Update server address and build process

This commit is contained in:
2024-01-26 00:11:38 -07:00
parent adcf4a695a
commit b303484fd9
3 changed files with 4 additions and 4 deletions

View File

@ -56,5 +56,5 @@ func main() {
apiGroup.GET("/sse", api.SSE)
apiGroup.POST("/sendsse", api.SSEDemoSend)
log.Fatal(http.ListenAndServe(":3000", router))
log.Fatal(http.ListenAndServe("127.0.0.1:3000", router))
}