Files
Solo_bot/api/v2/__init__.py
T
2026-04-14 07:19:14 +00:00

11 lines
200 B
Python

VERSION = "2.0.0"
__all__ = ("router", "VERSION")
def __getattr__(name: str):
if name == "router":
from api.v2.router import router
return router
raise AttributeError(name)