2022-09-28 09:01:17 +02:00
|
|
|
package customize
|
2022-04-15 09:42:07 +02:00
|
|
|
|
|
|
|
// IndexSettings represents indexing settings.
|
|
|
|
type IndexSettings struct {
|
2022-04-16 12:39:47 +02:00
|
|
|
Path string `json:"path" yaml:"Path"`
|
|
|
|
Convert bool `json:"convert" yaml:"Convert"`
|
|
|
|
Rescan bool `json:"rescan" yaml:"Rescan"`
|
|
|
|
SkipArchived bool `json:"skipArchived" yaml:"SkipArchived"`
|
2022-04-15 09:42:07 +02:00
|
|
|
}
|