Fix: various bug fix

This commit is contained in:
2025-10-16 07:12:01 +08:00
parent 5bbab63a2c
commit 0dea850cfa
16 changed files with 185 additions and 56 deletions

View File

@@ -64,6 +64,8 @@ func WordleServer(listener net.Listener) types.ShutdownFunc {
wordleHandlers.GetState)
apiGroup.POST("/guess",
wordleHandlers.PostGuess)
apiGroup.POST("/end",
wordleHandlers.PostEnd)
server := &http.Server{
Handler: http.Handler(router),