9 lines
307 B
Go
9 lines
307 B
Go
package config
|
|
|
|
// 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"`
|
|
}
|