You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

14 lines
308 B

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'