7 lines
110 B
Python
7 lines
110 B
Python
# bot/commands/__init__.py
|
|
from .command import router as command_router
|
|
|
|
__all__ = [
|
|
"command_router",
|
|
]
|