(workspaceRoot: string)
| 360 | } |
| 361 | |
| 362 | export function createSessionStore(workspaceRoot: string): SessionAuthorityStore { |
| 363 | return new SqliteSessionStore(workspaceRoot); |
| 364 | } |
| 365 | |
| 366 | class SqliteSessionStore implements SessionAuthorityStore { |
| 367 | private readonly metadata: SqliteSessionMetadataStore; |
no outgoing calls