Files
photoprism/internal/form/index_options.go
2025-11-22 12:09:21 +01:00

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"`
}