From 2b640625f2c8b062b5a41590a47ce0560cb1aac9 Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Sun, 13 Aug 2023 20:15:17 +0200 Subject: [PATCH] Port 80 IB --- cethttp/cethttp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cethttp/cethttp.go b/cethttp/cethttp.go index 3f4e45e..ce39549 100644 --- a/cethttp/cethttp.go +++ b/cethttp/cethttp.go @@ -22,7 +22,7 @@ func StartServer(waitgroup *sync.WaitGroup) { r.HandleFunc("/y/{year}/", yearHandler) r.HandleFunc("/y/{year}/m/{month}/", monthHandler) - err := http.ListenAndServe(":8080", r) + err := http.ListenAndServe(":8018", r) if err != nil { log.Fatal("error:", err) }