()
| 8 | @Module({}) |
| 9 | export class AuthModule { |
| 10 | static register() { |
| 11 | const imports = []; |
| 12 | |
| 13 | if (SERVER_CONFIG.buildType === BuildType.Electron) { |
| 14 | imports.push(WindowAuthModule); |
| 15 | } |
| 16 | |
| 17 | return { |
| 18 | module: AuthModule, |
| 19 | imports, |
| 20 | }; |
| 21 | } |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected