Fix readme

This commit is contained in:
Ken Hibino 2021-10-13 05:45:30 -07:00
parent 2cd2b67945
commit ea5f4192d0

View File

@ -153,7 +153,7 @@ func main() {
http.Handle(h.RootPath(), h) http.Handle(h.RootPath(), h)
// Go to http://localhost:8080/monitoring to see asynqmon homepage. // Go to http://localhost:8080/monitoring to see asynqmon homepage.
log.Fatal(http.ListenAndServe(":8000", nil)) log.Fatal(http.ListenAndServe(":8080", nil))
} }
``` ```