( socketPath: string, )
| 122 | } |
| 123 | |
| 124 | async function findAuthTokenForSocketPath( |
| 125 | socketPath: string, |
| 126 | ): Promise<string | undefined> { |
| 127 | const { readUdsCapabilityToken } = await import('./udsMessaging.js') |
| 128 | return readUdsCapabilityToken(socketPath) |
| 129 | } |
| 130 | |
| 131 | // --------------------------------------------------------------------------- |
| 132 | // Connection helpers |
no test coverage detected