Files
mirror/mirror-manager
T
2026-06-03 17:33:19 +03:30

11 lines
190 B
Python

#!/usr/bin/env python3
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent))
from app import cli # noqa: E402
if __name__ == "__main__":
cli()