Spaces:
Runtime error
Runtime error
| import { Injectable } from '@nestjs/common'; | |
| import { HealthCheckResult } from '@nestjs/terminus'; | |
| import { WAHAHealthCheckService } from '../abc/WAHAHealthCheckService'; | |
| import { AvailableInPlusVersion } from '../exceptions'; | |
| () | |
| export class WAHAHealthCheckServiceCore extends WAHAHealthCheckService { | |
| check(): Promise<HealthCheckResult> { | |
| throw new AvailableInPlusVersion(); | |
| } | |
| } | |