Severian's picture
initial commit
a8b3f00
raw
history blame
249 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")