From 82127815276ef2a7dd82ead9379995f419a3568c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=92=E9=85=92=E7=9A=84=E6=9D=8E=E7=99=BD?= <670939375@qq.com> Date: Tue, 2 Jul 2024 16:04:07 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90app.py=E3=80=91=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=85=A5=E5=8F=A3=E6=96=87=E4=BB=B6=EF=BC=8ChelloFlask?= =?UTF-8?q?=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app.py diff --git a/app.py b/app.py new file mode 100644 index 0000000..772f745 --- /dev/null +++ b/app.py @@ -0,0 +1,10 @@ +from flask import Flask + +app = Flask(__name__) + +@app.route('/') +def hello(): + return "小学期快乐!" + +if __name__ == '__main__': + app.run() \ No newline at end of file