Intial project

This commit is contained in:
2020-10-04 18:14:24 -04:00
parent 3657995de4
commit 10571c76ff
8 changed files with 240 additions and 0 deletions

View File

@ -0,0 +1,11 @@
from flask import Flask
app = Flask(__name__)
app.secret_key = "test"
@app.route("/")
def index():
return "Hello World!"
if __name__ == '__main__':
app.run(debug=True,host='0.0.0.0')