7 lines
158 B
Python
7 lines
158 B
Python
# app/tasks.py
|
|
import asyncio
|
|
from typing import Any, Dict, Optional
|
|
from app.services.task_tracker import task_tracker
|
|
from app.taskiq.broker import broker
|
|
|