diff --git a/main.go b/main.go index 4eeea55..bc27e59 100644 --- a/main.go +++ b/main.go @@ -291,5 +291,5 @@ func main() { }() // Setting up the API. - http.ListenAndServe("0.0.0.0:" + strconv.Itoa(*port), nil) + log.Fatal(http.ListenAndServe("0.0.0.0:" + strconv.Itoa(*port), nil)) }