gatus/storage/config.go
2021-02-20 19:00:54 -05:00

9 lines
216 B
Go

package storage
// Config is the configuration for alerting providers
type Config struct {
// File is the path of the file to use for persistence
// If blank, persistence is disabled.
File string `yaml:"file"`
}