Improvements

This commit is contained in:
Zaine
2026-07-09 16:34:28 +01:00
parent d7d0054af4
commit e9e3954f31
20 changed files with 6691 additions and 6686 deletions

View File

@@ -1,18 +1,18 @@
#!/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()
#!/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()