8 lines
146 B
Python
Raw Normal View History

from flask import render_template
from . import bp # Import the blueprint
@bp.route('/')
def index():
return render_template('index.html')