Add more commands

This commit is contained in:
Michał Gdula 2023-09-07 18:19:39 +01:00
parent bafe17e0d4
commit 0cddbb75e2
6 changed files with 279 additions and 5 deletions

View file

@ -1,7 +1,13 @@
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",
]