mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 23:43:27 +01:00
Support config.yml (as an alternative to config.yaml)
This commit is contained in:
parent
5f93894341
commit
9cf118996d
@ -5,6 +5,7 @@ import (
|
||||
"github.com/TwinProduction/gatus/core"
|
||||
"gopkg.in/yaml.v2"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"time"
|
||||
)
|
||||
|
||||
@ -20,9 +21,16 @@ var (
|
||||
func Get() *Config {
|
||||
if config == nil {
|
||||
cfg, err := readConfigurationFile("config.yaml")
|
||||
if err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
cfg, err = readConfigurationFile("config.yml")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
} else {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
config = cfg
|
||||
}
|
||||
return config
|
||||
|
Loading…
Reference in New Issue
Block a user