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