diff --git a/engine/web.go b/engine/web.go index d32e2f3..799886f 100644 --- a/engine/web.go +++ b/engine/web.go @@ -191,5 +191,6 @@ func webmain(reportPostChan chan ReportPost) { http.HandleFunc("/users/fedilogue/followers", users_fedilogue_followers) http.HandleFunc("/users/fedilogue/following", users_fedilogue_following) http.HandleFunc("/", errorHandler) + log.Print("Starting HTTP inbox on port 8080") log.Fatal(http.ListenAndServe(":8080", nil)) }