Draft: feat login
This commit is contained in:
13
backend/handlers/auth/handlers.go
Normal file
13
backend/handlers/auth/handlers.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package auth
|
||||
|
||||
import (
|
||||
"gitea.konchin.com/ytshih/inp2025/game/interfaces"
|
||||
)
|
||||
|
||||
type Handlers struct {
|
||||
db interfaces.Database
|
||||
}
|
||||
|
||||
func NewHandlers(db interfaces.Database) *Handlers {
|
||||
return &Handlers{db: db}
|
||||
}
|
||||
Reference in New Issue
Block a user