revert port
Some checks failed
Build and Publish / BuildAndDeploy (push) Successful in 3m2s
Build and Publish / BuildAndDeployAmd64 (push) Has been cancelled

This commit is contained in:
matst80
2025-10-10 12:10:37 +00:00
parent 716f1121aa
commit c30be581cd
6 changed files with 666 additions and 12 deletions

View File

@@ -377,8 +377,8 @@ func main() {
done <- true
}()
log.Print("Server started at port 8083")
go http.ListenAndServe(":8083", mux)
log.Print("Server started at port 8080")
go http.ListenAndServe(":8080", mux)
<-done
}