discordBot/commands/__init__.py

7 lines
145 B
Python

from .pogoda import Pogoda
from .news import News
from .cat import Cat
from .morning import Morning
ALL_COMMANDS = [Pogoda, News, Cat, Morning]