6 lines
87 B
Python
6 lines
87 B
Python
|
|
"""Backend application entrypoint."""
|
||
|
|
|
||
|
|
from app.api.main import app
|
||
|
|
|
||
|
|
__all__ = ["app"]
|