22 lines
341 B
Go
22 lines
341 B
Go
package bookmarks
|
|
|
|
type Config struct {
|
|
Parsed struct {
|
|
Links []struct {
|
|
Category string
|
|
Entries []struct {
|
|
Name string
|
|
URL string
|
|
}
|
|
}
|
|
Applications []struct {
|
|
Category string
|
|
Entries []struct {
|
|
Name string
|
|
Icon string
|
|
Background string
|
|
URL string
|
|
}
|
|
}
|
|
}
|
|
}
|