Draft: feat login

This commit is contained in:
2025-09-05 03:59:25 +08:00
parent 6d7074198f
commit b190a50e90
19 changed files with 589 additions and 83 deletions

14
interfaces/database.go Normal file
View File

@@ -0,0 +1,14 @@
package interfaces
import (
"context"
"gitea.konchin.com/ytshih/inp2025/game/models"
)
type Database interface {
InsertUser(
ctx context.Context,
user models.User,
) error
}