6 lines
127 B
Python
6 lines
127 B
Python
from flask import render_template
|
|
from app.main import bp
|
|
|
|
@bp.route('/')
|
|
def index():
|
|
return render_template("index.html") |