8 lines
146 B
Python
8 lines
146 B
Python
from flask import render_template
|
|
from . import bp # Import the blueprint
|
|
|
|
|
|
@bp.route('/')
|
|
def index():
|
|
return render_template('index.html')
|