()
| 209 | } |
| 210 | |
| 211 | export function getRuntimeRegistration(): RuntimeToolInfo | null { |
| 212 | if (registryState.tools.size === 0 && registryState.enabledWorkflows.size === 0) { |
| 213 | return null; |
| 214 | } |
| 215 | return snapshotRuntimeRegistration(); |
| 216 | } |
| 217 | |
| 218 | export function getRegisteredWorkflows(): string[] { |
| 219 | return [...registryState.enabledWorkflows]; |
no test coverage detected