mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
9 lines
216 B
Go
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"`
|
|
}
|