(userId: string)
| 22 | const contextTokens = new Map<string, string>() |
| 23 | |
| 24 | export function getContextToken(userId: string): string | undefined { |
| 25 | return contextTokens.get(userId) |
| 26 | } |
| 27 | |
| 28 | function cursorPath(): string { |
| 29 | return join(getStateDir(), 'cursor.txt') |
no test coverage detected