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)), } }