chore(file-server): print api server url port starter

This commit is contained in:
leandrofars 2024-07-05 14:38:06 -03:00
parent 10f950190f
commit 1adbabe654

View File

@ -42,7 +42,7 @@ func main() {
http.Handle("/", fileServer)
port := os.Getenv("SERVER_PORT")
fmt.Printf("Server started at http://localhost:%s\n", port)
fmt.Printf("Server started at http://localhost%s\n", port)
err = http.ListenAndServe(port, nil)
if err != nil {
fmt.Printf("Error starting server: %s\n", err)