File size: 197 Bytes
22ad7f3
 
 
 
 
 
9a5dd56
 
bf59c35
9a5dd56
 
1
2
3
4
5
6
7
8
9
10
11
from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello():
    return {"hello":"Deploy success"}

@app.route("/test/<text>")
def returnText(text):
    return f'The text is {text}'