summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2022-10-21 00:41:52 -0600
committernavanchauhan <navanchauhan@gmail.com>2022-10-21 00:41:52 -0600
commita1be427edd63c1aaab8ba77612b7e53b1bdcc16a (patch)
treef79d40a156117d53e460a62b65ce8a32d2e22c23
parent2003c8064e7e8209d765eaac4003c47a122c057f (diff)
change default port
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 2ac4046..0cf7e35 100644
--- a/main.go
+++ b/main.go
@@ -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)
}