mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 08:44:04 +01:00
18 lines
572 B
Go
18 lines
572 B
Go
package pwa
|
|
|
|
// Config represents progressive web app manifest config values.
|
|
type Config struct {
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
DefaultLocale string `json:"defaultLocale"`
|
|
Icon string `json:"icon"`
|
|
Color string `json:"color"`
|
|
Mode string `json:"mode"`
|
|
BaseUri string `json:"baseUri"`
|
|
StaticUri string `json:"staticUri"`
|
|
SiteUrl string `json:"siteUrl"`
|
|
CdnUrl string `json:"cdnUrl"`
|
|
ThemeUri string `json:"themeUri"`
|
|
ThemePath string `json:"themePath"`
|
|
}
|