2024-03-18 16:12:25 +01:00
|
|
|
package services
|
|
|
|
|
|
|
|
type BookmarkService struct {
|
2024-09-30 15:06:16 +02:00
|
|
|
bookmarks Bookmarks
|
2024-03-18 16:12:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Bookmarks struct {
|
|
|
|
Links []struct {
|
|
|
|
Category string
|
|
|
|
Entries []Link
|
|
|
|
}
|
|
|
|
Applications []struct {
|
|
|
|
Category string
|
|
|
|
Entries []Application
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Link struct {
|
|
|
|
Name string
|
|
|
|
URL string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Application struct {
|
2024-09-30 20:16:29 +02:00
|
|
|
Name string
|
|
|
|
Icon string
|
|
|
|
URL string
|
|
|
|
IconLight string
|
2024-03-18 16:12:25 +01:00
|
|
|
}
|