24 lines
342 B
Go
24 lines
342 B
Go
package bookmarks
|
|
|
|
import "go.uber.org/zap"
|
|
|
|
type Config struct {
|
|
log *zap.SugaredLogger
|
|
Parsed struct {
|
|
Links []struct {
|
|
Category string
|
|
Entries []struct {
|
|
Name string
|
|
URL string
|
|
}
|
|
}
|
|
Applications []struct {
|
|
Category string
|
|
Entries []struct {
|
|
Name string
|
|
Icon string
|
|
URL string
|
|
}
|
|
}
|
|
}
|
|
}
|