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

@@ -0,0 +1,16 @@
package wordle
import (
"net/http"
"gitea.konchin.com/ytshih/inp2025/utils"
"github.com/uptrace/bunrouter"
)
func (self *Handlers) PostEnd(
w http.ResponseWriter,
req bunrouter.Request,
) error {
self.opCh <- &OperationEnd{}
return utils.Success(w)
}