1234567891011121314151617 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/09/24 00:12:26
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : enter point
- '''
- from flask import Flask
- app = Flask(__name__)
- @app.route("/")
- def index():
- return app.send_static_file("index.html")
|