12 lines
196 B
Python
12 lines
196 B
Python
from .stop import stop
|
|
from .news import news
|
|
from .cat import cat
|
|
from .pogoda import pogoda
|
|
|
|
ALL_CONSOLE_COMMANDS = {
|
|
"stop": stop,
|
|
"news": news,
|
|
"cat": cat,
|
|
"pogoda": pogoda,
|
|
}
|