mirror of
https://github.com/langgenius/dify.git
synced 2026-05-12 15:58:19 +08:00
10 lines
183 B
Python
10 lines
183 B
Python
from flask_restx import Resource
|
|
|
|
from controllers.openapi import openapi_ns
|
|
|
|
|
|
@openapi_ns.route("/_health")
|
|
class HealthApi(Resource):
|
|
def get(self):
|
|
return {"ok": True}
|