rise_ai / app.py
markpeace's picture
test
e9107c4
raw
history blame
198 Bytes
#import json
from flask import Flask,request
# Initializing flask app
app = Flask(__name__)
@app.route('/', methods=['GET','POST'])
def index():
return {"response":"just some junk response"}