qualiteer/executor.config.js

7 lines
150 B
JavaScript
Raw Normal View History

2022-08-09 04:29:10 +00:00
export default function executorConfig(payload){
2022-07-18 21:38:25 +00:00
return {
2022-08-09 04:29:10 +00:00
command: ({command})=> command,
url: ({url})=>url ,
jobId: ({jobId}) => jobId,
2022-07-18 21:38:25 +00:00
}
2022-07-18 19:52:02 +00:00
}