""" Entrypoint du worker ARQ — traitement des images en arrière-plan. Lancer avec : python worker.py Le worker écoute les queues Redis 'standard' et 'premium' et traite les tâches de pipeline image (EXIF → OCR → AI). """ import asyncio from arq import run_worker from app.workers.image_worker import WorkerSettings if __name__ == "__main__": asyncio.run(run_worker(WorkerSettings))