discordBot/commands/__init__.py

8 lines
162 B
Python

from .pg import Pg
from .news import News
from .cat import Cat
from .morning import Morning
from .help import Help
ALL_COMMANDS = [Pg, News, Cat, Morning, Help]