Files
hamster-tycoon/service/game_service.go
2020-05-10 23:58:49 +02:00

12 lines
207 B
Go

package service
import "Game-tycoon/storage/dao"
type GameService struct {
serviceContext
}
func NewGameService(database dao.Database) *GameService {
return &GameService{serviceContext{db: database}}
}