test / main.py
FFatih's picture
Update main.py
defbd55 verified
raw
history blame
107 Bytes
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return {"message":"hello"}