Lynxie/lynxie/commands/__init__.py
Fluffy-Bean 0c1909807a Add animals command
Fix Youtube playback
Add Database file
2023-09-08 18:44:04 +01:00

13 lines
205 B
Python

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