rise_ai / app.py
markpeace's picture
s
e40dba1
raw
history blame
192 Bytes
# app.py
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_worlds():
return "hello d,, world!"
#if __name__ == '__main__':
# app.run(debug=True, host='0.0.0.0')