14 lines
209 B
Go
14 lines
209 B
Go
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}
|
|
}
|