games struct stubbed

This commit is contained in:
bel
2024-12-14 21:36:08 -07:00
parent 81af991c58
commit f40fdd60da
3 changed files with 16 additions and 0 deletions

9
cmd/server/games.go Normal file
View File

@@ -0,0 +1,9 @@
package main
type Games struct {
db DB
}
func NewGames(db DB) Games {
return Games{db: db}
}