10 lines
288 B
Python
Executable File
10 lines
288 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Compatibility-layer entrypoint that delegates to fixture/server.py."""
|
|
|
|
from pathlib import Path
|
|
import runpy
|
|
|
|
if __name__ == "__main__":
|
|
root = Path(__file__).resolve().parents[1]
|
|
runpy.run_path(str(root / "fixture" / "server.py"), run_name="__main__")
|