godash/internal/bookmarks/types.go
2023-10-03 18:17:06 +00:00

23 lines
359 B
Go

package bookmarks
type Config struct {
Parsed struct {
Links []struct {
Category string
Entries []struct {
Name string
Background bool
URL string
}
}
Applications []struct {
Category string
Entries []struct {
Name string
Icon string
Background bool
URL string
}
}
}
}