from .stop import stop from .news import news from .cat import cat from .pogoda import pogoda from .morning import morning from .help import help from .status import status from .stats import stats ALL_CONSOLE_COMMANDS = { "stop": stop, "news": news, "cat": cat, "pogoda": pogoda, "morning": morning, "help": help, "status": status, "stats": stats, }