out/cmd/server/games.go

10 lines
97 B
Go

package main
type Games struct {
db DB
}
func NewGames(db DB) Games {
return Games{db: db}
}