9 lines
200 B
Python
9 lines
200 B
Python
from .pg import Pg
|
|
from .news import News
|
|
from .cat import Cat
|
|
from .morning import Morning
|
|
from .status import Status
|
|
from .stats import Stats
|
|
|
|
ALL_COMMANDS = [Pg, News, Cat, Morning, Status, Stats]
|