oop fix port

This commit is contained in:
smolgrrr 2023-11-27 15:20:31 +11:00
parent c28e504c09
commit 7df3e9f24a

View File

@ -221,5 +221,5 @@ func main() {
http.Handle("/powgen", corsMiddleware(handlePOWWithCores(numCores))) http.Handle("/powgen", corsMiddleware(handlePOWWithCores(numCores)))
http.Handle("/test", corsMiddleware(handleTestWithCores(numCores))) http.Handle("/test", corsMiddleware(handleTestWithCores(numCores)))
log.Fatal(http.ListenAndServe("127.0.0.1:42068", nil)) log.Fatal(http.ListenAndServe("0.0.0.0:42068", nil))
} }