Skip to content

Commit f51061d

Browse files
author
alexadrake
committed
fix: port
1 parent 6b8eadb commit f51061d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/server/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ func main() {
2323
r.HandleFunc("/pagination/limitoffset/offset", pagination.HandleLimitOffsetOffset).Methods(http.MethodGet, http.MethodPut)
2424
r.HandleFunc("/pagination/cursor", pagination.HandleCursor).Methods(http.MethodGet, http.MethodPut)
2525

26-
log.Println("Listening on :35456")
27-
if err := http.ListenAndServe(":35456", r); err != nil {
26+
log.Println("Listening on :8080")
27+
if err := http.ListenAndServe(":8080", r); err != nil {
2828
log.Fatal(err)
2929
}
3030
}

0 commit comments

Comments
 (0)