Support config.yml (as an alternative to config.yaml)

This commit is contained in:
TwinProduction 2019-11-16 15:01:40 -05:00
parent 5f93894341
commit 9cf118996d

View File

@ -5,6 +5,7 @@ import (
"github.com/TwinProduction/gatus/core"
"gopkg.in/yaml.v2"
"io/ioutil"
"os"
"time"
)
@ -21,7 +22,14 @@ func Get() *Config {
if config == nil {
cfg, err := readConfigurationFile("config.yaml")
if err != nil {
panic(err)
if os.IsNotExist(err) {
cfg, err = readConfigurationFile("config.yml")
if err != nil {
panic(err)
}
} else {
panic(err)
}
}
config = cfg
}