mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-08 10:26:50 +08:00
15 lines
265 B
Python
15 lines
265 B
Python
from flask_restful import Resource # type: ignore
|
|
|
|
from controllers.console import api
|
|
|
|
|
|
class PingApi(Resource):
|
|
def get(self):
|
|
"""
|
|
For connection health check
|
|
"""
|
|
return {"result": "pong"}
|
|
|
|
|
|
api.add_resource(PingApi, "/ping")
|