feat: more feature flags

This commit is contained in:
2023-10-17 10:54:34 +01:00
parent 1a507679f3
commit 281785952d
12 changed files with 119 additions and 87 deletions

View File

@ -168,4 +168,4 @@ class ZapPool extends ExternalStore<Array<ZapPoolRecipient>> {
}
}
export const ZapPoolController = new ZapPool();
export const ZapPoolController = CONFIG.features.zapPool ? new ZapPool() : undefined;