mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-19 15:14:42 +08:00
10 lines
310 B
Go
10 lines
310 B
Go
package customize
|
|
|
|
// IndexSettings represents indexing settings.
|
|
type IndexSettings struct {
|
|
Path string `json:"path" yaml:"Path"`
|
|
Convert bool `json:"convert" yaml:"Convert"`
|
|
Rescan bool `json:"rescan" yaml:"Rescan"`
|
|
SkipArchived bool `json:"skipArchived" yaml:"SkipArchived"`
|
|
}
|