Add configuration file

This commit is contained in:
TwinProduction
2019-09-06 00:01:48 -04:00
parent b753443516
commit c1c46b6b30
5 changed files with 68 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package main
import (
"fmt"
"github.com/TwinProduction/gatus/config"
"github.com/TwinProduction/gatus/watchdog"
)
@ -11,4 +12,6 @@ func main() {
request.GetIp(result)
request.GetStatus(result)
fmt.Println(result)
fmt.Println(config.Get())
}