Nephalem/llama-cpp-telegram_bot
0
1 2"""Telegram bot web application package."""3 4from importlib import import_module5 6 7def __getattr__(name: str):8 if name == "app":9 return import_module(".main", __name__).app10 raise AttributeError(name)11 12 13__all__ = ["app"]14 