from quart import Blueprint, current_app from totrader.models import * from totrader.tasks import trader bp = Blueprint('tasks', 'tasks', url_prefix='/api/tasks') @bp.route('/store_ticker_data') async def store_ticker_data(): current_app.add_background_task(trader.store_ticker_data) return '1'