Port 80 IB

This commit is contained in:
Senad Uka
2023-08-13 20:15:17 +02:00
parent df8253591d
commit 2b640625f2

View File

@@ -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)
}