Lynxie/lynxie/commands/__init__.py
Fluffy-Bean 4e685393de Add Images command
Clean up Animals command
2023-09-08 21:53:33 +01:00

15 lines
239 B
Python

from .help import Help
from .ping import Ping
from .hello import Hello
from .music import Music
from .animals import Animals
from .image import Img
__all__ = [
"Help",
"Ping",
"Hello",
"Music",
"Animals",
"Img",
]