init commit

This commit is contained in:
2020-05-11 21:42:32 +00:00
commit 94110afecf
134 changed files with 29291 additions and 0 deletions

6
test.py Normal file
View File

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