mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
9 lines
199 B
Go
9 lines
199 B
Go
package form
|
|
|
|
// IndexOptions configure index paths and maintenance flags.
|
|
type IndexOptions struct {
|
|
Path string `json:"path"`
|
|
Rescan bool `json:"rescan"`
|
|
Cleanup bool `json:"cleanup"`
|
|
}
|