mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 00:27:14 +00:00
12 lines
504 B
Go
12 lines
504 B
Go
package config
|
|
|
|
type EventPurgeConfig struct {
|
|
Enabled bool `yaml:"enabled"`
|
|
KeepIntervalHours int `yaml:"keep_interval_hours"`
|
|
PurgeIntervalMinutes int `yaml:"purge_interval_minutes"`
|
|
PurgeByCategory map[string]bool `yaml:"purge_by_category"`
|
|
PurgeByKindEnabled bool `yaml:"purge_by_kind_enabled"`
|
|
KindsToPurge []int `yaml:"kinds_to_purge"`
|
|
ExcludeWhitelisted bool `yaml:"exclude_whitelisted"`
|
|
}
|