From 922e31525458ddb84b7f1858b49917efdcd098c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onur=20Ravl=C4=B1?= Date: Wed, 10 Jan 2024 16:17:06 +0300 Subject: [PATCH] chore: print port info message --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index d14817e3..b5672274 100644 --- a/main.go +++ b/main.go @@ -26,6 +26,7 @@ Hello from Docker! func main() { http.HandleFunc("/", handler) + fmt.Println("Server listening on 8080") log.Fatal(http.ListenAndServe(":8080", nil)) }