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