mirror of
https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot.git
synced 2026-01-20 03:40:26 +00:00
12 lines
273 B
Python
12 lines
273 B
Python
from typing import Any
|
|
|
|
__all__ = ["create_unified_app"]
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
if name == "create_unified_app":
|
|
from .unified_app import create_unified_app as _create_unified_app
|
|
|
|
return _create_unified_app
|
|
raise AttributeError(name)
|