26 lines
550 B
Python
26 lines
550 B
Python
"""Compatibility entry point for the preserved application runtime.
|
|
|
|
The implementation lives under ``backend``; this module keeps the original command and
|
|
import surface stable while migration proceeds feature by feature.
|
|
"""
|
|
|
|
from backend.application import (
|
|
DashboardService,
|
|
RequestHandler,
|
|
SERVICE,
|
|
automatic_screener_jobs,
|
|
)
|
|
from backend.bootstrap.runtime import main
|
|
|
|
__all__ = [
|
|
"DashboardService",
|
|
"RequestHandler",
|
|
"SERVICE",
|
|
"automatic_screener_jobs",
|
|
"main",
|
|
]
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|