()
| 35 | * Get the tenant store instance. Lazily initializes on first access. |
| 36 | */ |
| 37 | export function getTenantStore(): import("./sqlite.js").TenantStore { |
| 38 | if (!_tenantStore) { |
| 39 | _tenantStore = initializeTenantStore(); |
| 40 | } |
| 41 | return _tenantStore; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Initialize the tenant store. |
no test coverage detected
searching dependent graphs…