(param: { uuid: string; enable: boolean })
| 33 | }; |
| 34 | |
| 35 | export const requestEnableScript = async (param: { uuid: string; enable: boolean }) => { |
| 36 | return await scriptClient.enable(param.uuid, param.enable); |
| 37 | }; |
| 38 | |
| 39 | export const requestRunScript = async (uuid: string) => { |
| 40 | return await runtimeClient.runScript(uuid); |
no test coverage detected