main py and gitignore
This commit is contained in:
7
app/main.py
Normal file
7
app/main.py
Normal file
@ -0,0 +1,7 @@
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/")
|
||||
def hello_world():
|
||||
return "<p>Hello, World?</p>"
|
Reference in New Issue
Block a user