refactor: разделение domain.py на модуль domain, включающий common.py и session.py
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
from .common import Player, PlayerRole
|
||||
from .session import (
|
||||
ArrowDirection,
|
||||
CardData,
|
||||
CardState,
|
||||
SessionStats,
|
||||
StepData,
|
||||
StepState,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Player",
|
||||
"PlayerRole",
|
||||
"ArrowDirection",
|
||||
"CardData",
|
||||
"CardState",
|
||||
"SessionStats",
|
||||
"StepData",
|
||||
"StepState",
|
||||
]
|
||||
Reference in New Issue
Block a user