I could use this to detect when the application has started before sending some request. Currently nothing is displayed at all. @0uep is there a better way to do this?
@@ -153,6 +153,7 @@ func main() {
r.GET("/fortunes", fortunes)
r.GET("/update", update)
r.GET("/plaintext", plaintext)
+ log.Print("Listening and serving HTTP\n")
r.Run(":8080")
}