Files
nexus-sync/src/nexus_sync/client/__main__.py
T
2026-06-15 03:29:42 +03:00

9 lines
195 B
Python

import sys
from nexus_sync.client.runtime import main
from nexus_sync.utils import configure_logging
if __name__ == "__main__":
configure_logging()
raise SystemExit(main(sys.argv[1:]))