()
| 15 | * @throws If registry not initialized |
| 16 | */ |
| 17 | export function getPersistenceRegistry(): IPersistenceRegistry { |
| 18 | if (!registry) { |
| 19 | throw new Error('Persistence registry not initialized. Call initPersistenceRegistry first.') |
| 20 | } |
| 21 | return registry |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Initialize persistence registry |
no outgoing calls
no test coverage detected