mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
8 lines
183 B
Go
8 lines
183 B
Go
|
package storage
|
||
|
|
||
|
// Config is the configuration for alerting providers
|
||
|
type Config struct {
|
||
|
// File is the path of the file to use when using file.Store
|
||
|
File string `yaml:"file"`
|
||
|
}
|