You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 1234567891011121314 |
- 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")
|