18 lines
391 B
Go
18 lines
391 B
Go
package slots
|
|
|
|
import (
|
|
"mongo.games.com/game/gamesrv/slotspkg/internal/module/player"
|
|
"mongo.games.com/game/gamesrv/slotspkg/internal/module/session"
|
|
"mongo.games.com/game/gamesrv/slotspkg/internal/module/shell"
|
|
)
|
|
|
|
type dataSet struct {
|
|
*shell.Shell
|
|
}
|
|
|
|
func DataSet(s *session.Session) *dataSet {
|
|
return &dataSet{
|
|
Shell: shell.Session(s, ServiceName(), player.CategoryName(s)),
|
|
}
|
|
}
|