listen on port 8080 instead of 3000

This commit is contained in:
Jon Roeber 2023-02-27 11:14:21 -05:00
parent 16a45be28e
commit 14349632a8

View File

@ -17,7 +17,7 @@ func main() {
flag.Parse() flag.Parse()
http.HandleFunc("/", post) http.HandleFunc("/", post)
err := http.ListenAndServe(":3000", nil) err := http.ListenAndServe(":8080", nil)
if err != nil { if err != nil {
panic(err) panic(err)
} }