mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 05:39:42 +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")
|