gatus/storage/config.go

9 lines
216 B
Go
Raw Normal View History

2021-02-03 05:06:34 +01:00
package storage
// Config is the configuration for alerting providers
type Config struct {
2021-02-21 01:00:54 +01:00
// File is the path of the file to use for persistence
// If blank, persistence is disabled.
2021-02-03 05:06:34 +01:00
File string `yaml:"file"`
}