(configDir: string)
| 176 | } |
| 177 | |
| 178 | export function tryReadAuthConfig(configDir: string): AuthConfig | null { |
| 179 | try { |
| 180 | return readAuthConfig(configDir); |
| 181 | } catch { |
| 182 | return null; |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | export function writeAuthConfigFile( |
| 187 | configPath: string, |
no test coverage detected