Skip to content

Commit f214b0d

Browse files
committed
ref(game): make dir for game usecase
1 parent 615dd0a commit f214b0d

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

src/ttt/presentation/aiogram/game/routes/all.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
from ttt.presentation.aiogram.game.routes.cancel_game import cancel_game_router
1+
from ttt.presentation.aiogram.game.routes.game.cancel_game import (
2+
cancel_game_router,
3+
)
4+
from ttt.presentation.aiogram.game.routes.game.make_move_in_game import (
5+
make_move_in_game_router,
6+
)
7+
from ttt.presentation.aiogram.game.routes.game.wait_game import wait_game_router
28
from ttt.presentation.aiogram.game.routes.game_with_ai.start_game_with_ai import ( # noqa: E501
39
start_game_with_ai_router,
410
)
511
from ttt.presentation.aiogram.game.routes.game_with_ai.wait_ai_type_to_start_game_with_ai import ( # noqa: E501
612
wait_ai_type_to_start_game_with_ai_router,
713
)
8-
from ttt.presentation.aiogram.game.routes.make_move_in_game import (
9-
make_move_in_game_router,
10-
)
11-
from ttt.presentation.aiogram.game.routes.wait_game import wait_game_router
1214

1315

1416
game_routers = (

src/ttt/presentation/aiogram/game/routes/game/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)