- Create voiceprint.feature-flags.ts to re-export checkFlag - Update voiceprint.config.ts to use checkFlag for all flags - Update voiceprint.service.ts to import checkFlag - Ensure voiceprint services respect feature flags
8 lines
249 B
TypeScript
8 lines
249 B
TypeScript
/**
|
|
* VoicePrint Feature Flags
|
|
* Re-exports the checkFlag function from the centralized feature flag system
|
|
*/
|
|
|
|
// Re-export the checkFlag function from the spamshield feature flags module
|
|
export { checkFlag } from '../spamshield/feature-flags';
|