Add Flask
Fixes: #710 Co-Authored-By: Parth Waidya <parthwaidya@gmail.com>
This commit is contained in:
9
f/flask.py
Normal file
9
f/flask.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask import Flask
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/")
|
||||
def hello():
|
||||
return "Hello World"
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run()
|
||||
Reference in New Issue
Block a user