'nother bug fix

This commit is contained in:
Dipun Mistry 2022-09-04 22:25:18 +01:00 committed by GitHub
parent c61ce27d10
commit 49dd82f302
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ func main() {
port := os.Getenv("HOST_PORT")
if len(port) == 0 {
port := "9000"
port = "9000"
}
err := http.ListenAndServe(":" + port, mux)