Files
routstr-core/router/__init__.py
T
2025-06-30 00:17:26 +02:00

8 lines
109 B
Python

import dotenv
dotenv.load_dotenv()
from .main import app as fastapi_app # noqa
__all__ = ["fastapi_app"]