Lynxie/lynxie/commands/__init__.py
2023-09-07 18:19:39 +01:00

13 lines
196 B
Python

from .help import Help
from .ping import Ping
from .hello import Hello
from .music import Music
from .e621 import E621
__all__ = [
"Help",
"Ping",
"Hello",
"Music",
"E621",
]