game_sync/gamesrv/slotspkg/slots/dataset.go

18 lines
365 B
Go

package slots
import (
"mongo.games.com/game/gamesrv/base"
"mongo.games.com/game/gamesrv/slotspkg/internal/module/player"
"mongo.games.com/game/gamesrv/slotspkg/internal/module/shell"
)
type dataSet struct {
*shell.Shell
}
func DataSet(s *base.SlotsSession) *dataSet {
return &dataSet{
Shell: shell.Session(s, ServiceName(), player.CategoryName(s)),
}
}