(params: RequestHandlerChainParams)
| 137 | } |
| 138 | |
| 139 | async function runFindHandler(params: RequestHandlerChainParams): Promise<DaemonResponse> { |
| 140 | const { handleFindCommands } = await loadFindHandlerModule(); |
| 141 | return expectHandlerResponse( |
| 142 | params.req.command, |
| 143 | 'find', |
| 144 | await handleFindCommands({ |
| 145 | req: params.req, |
| 146 | sessionName: params.sessionName, |
| 147 | logPath: params.logPath, |
| 148 | sessionStore: params.sessionStore, |
| 149 | invoke: params.invoke, |
| 150 | }), |
| 151 | ); |
| 152 | } |
| 153 | |
| 154 | async function runInteractionHandler(params: RequestHandlerChainParams): Promise<DaemonResponse> { |
| 155 | const { handleInteractionCommands } = await loadInteractionHandlerModule(); |
no test coverage detected
searching dependent graphs…