16 lines
334 B
Python
16 lines
334 B
Python
from .stop import stop
|
|
from .news import news
|
|
from .cat import cat
|
|
from .pogoda import pogoda
|
|
from .morning import morning
|
|
from .help import help # добавлено
|
|
|
|
ALL_CONSOLE_COMMANDS = {
|
|
"stop": stop,
|
|
"news": news,
|
|
"cat": cat,
|
|
"pogoda": pogoda,
|
|
"morning": morning,
|
|
"help": help, # добавлено
|
|
}
|