main py and gitignore

This commit is contained in:
Josh Burman
2021-08-12 12:36:58 -04:00
parent 066ced8678
commit 4567653170
2 changed files with 34 additions and 0 deletions

7
app/main.py Normal file
View File

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World?</p>"