Refactor
This commit is contained in:
parent
6a8f405bbc
commit
ff55e9e3a7
5
main.go
5
main.go
@ -29,8 +29,7 @@ func main() {
|
|||||||
// test config read
|
// test config read
|
||||||
_, err = ReadConfig(os.Getenv("CONFIG_PATH"))
|
_, err = ReadConfig(os.Getenv("CONFIG_PATH"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("cannot read config - " + err.Error())
|
log.Fatalf("cannot read config - " + err.Error())
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// flags
|
// flags
|
||||||
@ -64,7 +63,7 @@ func main() {
|
|||||||
fmt.Println("Webhook server listening on " + os.Getenv("LISTEN"))
|
fmt.Println("Webhook server listening on " + os.Getenv("LISTEN"))
|
||||||
err = http.ListenAndServe(os.Getenv("LISTEN"), nil)
|
err = http.ListenAndServe(os.Getenv("LISTEN"), nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err.Error())
|
log.Fatalf(err.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user