xtts / test.py
lalalic's picture
Update test.py
2839364 verified
raw
history blame
157 Bytes
from flask import Flask
app=Flask(__name__)
@app.route("/")
def hello():
return "hello flask"
@app.route("/good")
def hello():
return "hello good"