12 lines
230 B
Python
12 lines
230 B
Python
from flask import Blueprint, render_template
|
|
from .auth import login_required
|
|
|
|
# 创建主页蓝图
|
|
main_bp = Blueprint('main', __name__)
|
|
|
|
|
|
@main_bp.route('/')
|
|
@login_required
|
|
def index():
|
|
return render_template('index.html')
|