port http starting message

This commit is contained in:
farhan 2020-12-13 23:33:38 +00:00
parent fd56285e71
commit 4d5d3a8a2b

View File

@ -191,5 +191,6 @@ func webmain(reportPostChan chan ReportPost) {
http.HandleFunc("/users/fedilogue/followers", users_fedilogue_followers) http.HandleFunc("/users/fedilogue/followers", users_fedilogue_followers)
http.HandleFunc("/users/fedilogue/following", users_fedilogue_following) http.HandleFunc("/users/fedilogue/following", users_fedilogue_following)
http.HandleFunc("/", errorHandler) http.HandleFunc("/", errorHandler)
log.Print("Starting HTTP inbox on port 8080")
log.Fatal(http.ListenAndServe(":8080", nil)) log.Fatal(http.ListenAndServe(":8080", nil))
} }