(key: string, defaultValue?: string)
| 838 | } |
| 839 | |
| 840 | function getConfig(key: string, defaultValue?: string): string { |
| 841 | return ConfigManager.get(key, defaultValue || DEFAULT_CONFIG[key] || ""); |
| 842 | } |
| 843 | |
| 844 | function createSafetySettings(): any[] { |
| 845 | return [ |
no test coverage detected