diff --git a/backend/services/utils/file-server/main.go b/backend/services/utils/file-server/main.go index 82e7705..e3dd389 100644 --- a/backend/services/utils/file-server/main.go +++ b/backend/services/utils/file-server/main.go @@ -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)