mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
602ce67e41
`apps` → `core`
12 lines
328 B
Python
12 lines
328 B
Python
from utils.mysql import MySQL
|
|
from utils.service.manager import listener_service
|
|
from .repositories import SignRepository
|
|
from .services import SignServices
|
|
|
|
|
|
@listener_service()
|
|
def create_game_strategy_service(mysql: MySQL):
|
|
_repository = SignRepository(mysql)
|
|
_service = SignServices(_repository)
|
|
return _service
|