(version: string)
| 20 | const DEV_IMAGE = 'shannon-worker'; |
| 21 | |
| 22 | export function getWorkerImage(version: string): string { |
| 23 | return getMode() === 'local' ? DEV_IMAGE : `${NPX_IMAGE_REPO}:${version}`; |
| 24 | } |
| 25 | |
| 26 | function getComposeFile(): string { |
| 27 | return getMode() === 'local' |
no test coverage detected