totrader/totrader/routes/meta.py

12 lines
192 B
Python

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