5 lines
109 B
Python
5 lines
109 B
Python
# Routers package
|
|
from . import auth, user, game, websocket
|
|
|
|
__all__ = ["auth", "user", "game", "websocket"]
|