File size: 204 Bytes
21c7db9 | 1 2 3 4 5 6 7 8 9 10 11 | """Canonical API module path.
Keeps compatibility with required file path while reusing ``app.api`` app.
"""
from __future__ import annotations
from app.api import app, main
__all__ = ["app", "main"]
|