
from flask_restx import Namespace, Resource

health_namespace = Namespace('health', description='Health check operations')

@health_namespace.route('/')
class HealthCheck(Resource):
    def get(self):
        return {'status': 'healthy'}, 200