nopaque/app/main/views.py

8 lines
134 B
Python
Raw Normal View History

from flask import render_template
from . import main
@main.route('/')
def index():
return render_template('main/index.html.j2')