Files
pear-admin-flask/applications/view/index/index.py
T
2021-06-12 21:20:13 +08:00

9 lines
141 B
Python

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