from __future__ import annotations

import json

from app import create_app
from app.services.worker_service import WorkerService

app = create_app()

if __name__ == '__main__':
    with app.app_context():
        print(json.dumps(WorkerService().run(), ensure_ascii=False, indent=2))
