2023-03-28

Signed-off-by: Yuan Si <do4suki@gmail.com>
This commit is contained in:
2023-03-29 00:32:42 +08:00
parent 966606afc2
commit c6eaae9ae1
7 changed files with 4821 additions and 2 deletions
+3
View File
@@ -46,6 +46,9 @@ func main() {
r.POST("/main.php/user/changeNavi", handler.SetNotificationTokenHandler)
r.POST("/main.php/event/eventList", handler.EventListHandler)
r.POST("/main.php/payment/productList", handler.ProductListHandler)
r.POST("/main.php/live/partyList", handler.PartyListHandler)
r.POST("/main.php/live/play", handler.PlayLiveHandler)
r.POST("/main.php/live/gameover", handler.GameOverHandler)
r.Run(":8080") // listen and serve on 0.0.0.0:8080 (for windows "localhost:8080")
}