totrader/totrader/routes/meta.py

10 lines
161 B
Python

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