xtts / test.py
lalalic's picture
Update test.py
08d9505 verified
raw
history blame
173 Bytes
from flask import Flask
app=Flask(__name__)
@app.route("/")
def hello():
return "hello flask"
@app.route("/good", methods=["get"])
def good():
return "hello good"