docs: 2026-04-28作业

This commit is contained in:
2026-05-11 23:07:40 +08:00
parent dd21ddbaef
commit 6b51126213
7 changed files with 261 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from flask import *
app = Flask(__name__)
@app.route('/')
@app.route('/static-file')
def load_staticfile():
return render_template('hw_t2.html')
if __name__ == "__main__":
app.run(port=80)