15 lines
256 B
Python
15 lines
256 B
Python
from __future__ import annotations
|
|
|
|
import json
|
|
|
|
from iaai_sync_service.tasks import execute_sync_job
|
|
|
|
|
|
def main() -> None:
|
|
result = execute_sync_job()
|
|
print(json.dumps(result, ensure_ascii=False, indent=2))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|