forked from Team-Ortix/StatusApp
10 lines
126 B
Go
10 lines
126 B
Go
|
package main
|
||
|
|
||
|
func main() {
|
||
|
cfg, err := ReadConfig("config.json")
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
checkLoop(cfg.Targets)
|
||
|
}
|