interface HealthCheckResponse {
  data: string;
  message: string;
  status: number;
}

export default HealthCheckResponse;
