Xin Zhang
initial dify code
27fd333
raw
history blame contribute delete
272 Bytes
from flask_restful import Resource
from controllers.console import api
class PingApi(Resource):
def get(self):
"""
For connection health check
"""
return {
"result": "pong"
}
api.add_resource(PingApi, '/ping')