"""Logic for Hello. Verify that the application and its dependencies are available. """ from images import response def health_check(): """Health check handler. Returns: Response: the system status. """ return response.Response(message={'status': 'ok'}, status=200)