diff --git a/main.go b/main.go index 663f2f3..fec5edc 100644 --- a/main.go +++ b/main.go @@ -56,5 +56,5 @@ func main() { apiGroup.GET("/sse", api.SSE) apiGroup.POST("/sendsse", api.SSEDemoSend) - log.Fatal(http.ListenAndServe("127.0.0.1:3000", router)) + log.Fatal(http.ListenAndServe(":3000", router)) }