(key: string)
| 125 | } |
| 126 | |
| 127 | export async function getSystemCache(key: string): Promise<Record<string, any>> { |
| 128 | const { systemCache } = getCache(); |
| 129 | |
| 130 | return await getCacheValue(systemCache, key); |
| 131 | } |
| 132 | |
| 133 | export function setMemorySchemaCache(schema: SchemaOverview) { |
| 134 | if (Object.isFrozen(schema)) { |
nothing calls this directly
no test coverage detected