Files
authoring-service/authoring_server.py
Zaine 023eb8f70e
All checks were successful
Build Authoring Service / build (push) Successful in 8s
breaking code down
2026-05-13 22:52:47 +01:00

19 lines
395 B
Python
Executable File

#!/usr/bin/env python3
"""Compatibility entry point for the authoring service."""
from __future__ import annotations
from pathlib import Path
import sys
SRC = Path(__file__).resolve().parent / "src"
if str(SRC) not in sys.path:
sys.path.insert(0, str(SRC))
from authoring_service import * # noqa: F401,F403
from authoring_service.web import main
if __name__ == "__main__":
main()