Spaces:
Sleeping
Sleeping
from flask import Flask, request | |
from app import judge | |
from flask_cors import CORS | |
app = Flask(__name__) | |
CORS(app) | |
def hello(): | |
return {"hello":"Deploy success"} | |
def test(): | |
return "Test success" | |
def returnText(text): | |
return f'The text is {text}' | |
def check(): | |
comment = request.json['comment'] | |
result = judge(comment) | |
return result |