duqing2026's picture
升级优化
3dcda11
raw
history blame contribute delete
326 Bytes
from flask import Flask, render_template, send_from_directory, jsonify
import os
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/health')
def health():
return jsonify({"status": "healthy"}), 200
if __name__ == '__main__':
app.run(host='0.0.0.0', port=7860)