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