totrader/totrader/routes/meta.py

16 lines
286 B
Python

from quart import Blueprint, render_template
from totrader.models import *
from totrader.tasks import trader
bp = Blueprint('meta', 'meta')
@bp.route('/')
async def index():
return await render_template(
'index.html',
trade_currency=trader.trade_currency
)