12345678910111213141516 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/11/09 14:22:14
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : home, redirect to index.html
- '''
- from flask import Blueprint, redirect, url_for
- bp = Blueprint('home', __name__)
- @bp.route('/')
- def home():
- return redirect(url_for('static', filename='./index.html'))
|