photoprism/internal/pwa/sw.go

9 lines
213 B
Go
Raw Normal View History

package pwa
// Serviceworker represents serviceworker options for the PWA manifest.
type Serviceworker struct {
Src string `json:"src"`
Scope string `json:"scope"`
UseCache bool `json:"use_cache"`
}