11 lines
209 B
Go
11 lines
209 B
Go
package service
|
|
|
|
import "hamster-tycoon/storage/dao"
|
|
|
|
type GameService struct {
|
|
serviceContext
|
|
}
|
|
|
|
func NewGameService(database dao.Database) *GameService {
|
|
return &GameService{serviceContext{db: database}}
|
|
} |