import { validateRuntimeSanity } from '@/infrastructure/RuntimeSanity/SanityChecks'; import { Bootstrapper } from '../Bootstrapper'; export class RuntimeSanityValidator implements Bootstrapper { constructor(private readonly validator = validateRuntimeSanity) { } public async bootstrap(): Promise { this.validator({ validateEnvironmentVariables: true, validateWindowVariables: true, }); } }