8 lines
151 B
Python
8 lines
151 B
Python
"""Main script entrypoint."""
|
|
|
|
from .settings import BackendSettings
|
|
|
|
from .app import create_backend_app
|
|
|
|
app = create_backend_app(BackendSettings())
|