matcher/old/modules/health/domain/interfaces/check-repository.interface.ts

4 lines
73 B
TypeScript

export interface ICheckRepository {
healthCheck(): Promise<boolean>;
}