This commit is contained in:
lichen
2022-04-08 19:46:46 +08:00
commit 5ea52d9d38
41 changed files with 9171 additions and 0 deletions

10
manage.py Normal file
View File

@ -0,0 +1,10 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == "__main__":
app.run()