This commit is contained in:
Peter Stuifzand 2018-01-29 22:42:51 +01:00
parent 841d57538f
commit 2c9ef77e93

View File

@ -95,5 +95,5 @@ func (handler *subscriptionHandler) ServeHTTP(w http.ResponseWriter, r *http.Req
func main() {
http.Handle("/", &subscriptionHandler{})
tlog.Fatal(http.ListenAndServe(":80", nil))
log.Fatal(http.ListenAndServe(":80", nil))
}