arecibo
Version:
Fastify plugin that respondes to Kubernetes readiness and liveness probes.
23 lines (22 loc) • 433 B
TypeScript
export declare const readinessSchema: {
description: string;
tags: string[];
summary: string;
response: {
200: {
description: string;
type: string;
};
};
};
export declare const livenessSchema: {
description: string;
tags: string[];
summary: string;
response: {
200: {
description: string;
type: string;
};
};
};