(configDir: string)
| 172 | } |
| 173 | |
| 174 | export function readAuthConfig(configDir: string): AuthConfig { |
| 175 | return readAuthConfigFile(getAuthConfigFilePath(configDir)); |
| 176 | } |
| 177 | |
| 178 | export function tryReadAuthConfig(configDir: string): AuthConfig | null { |
| 179 | try { |
no test coverage detected