Draft: feat login

This commit is contained in:
2025-09-05 03:59:25 +08:00
parent 6d7074198f
commit fd694704be
43 changed files with 2090 additions and 93 deletions

View File

@@ -0,0 +1,13 @@
package api
import (
"gitea.konchin.com/ytshih/inp2025/game/interfaces"
)
type Handlers struct {
db interfaces.Database
}
func NewHandlers(db interfaces.Database) *Handlers {
return &Handlers{db: db}
}