diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-10-21 00:41:52 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-10-21 00:41:52 -0600 |
commit | a1be427edd63c1aaab8ba77612b7e53b1bdcc16a (patch) | |
tree | f79d40a156117d53e460a62b65ce8a32d2e22c23 | |
parent | 2003c8064e7e8209d765eaac4003c47a122c057f (diff) |
change default port
-rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -96,6 +96,6 @@ func main() { searchHandler(w, r, index, searchResultsTemplate2) }) - fmt.Println("Listening on port 8080") - http.ListenAndServe(":8080", nil) + fmt.Println("Listening on port 8752") + http.ListenAndServe(":8752", nil) } |