feat: super basic flask app
This commit is contained in:
parent
e37e329385
commit
7a5bebb9ff
|
@ -0,0 +1,7 @@
|
||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def hello_world():
|
||||||
|
return "<p>Hello, World!</p>"
|
Loading…
Reference in New Issue