( serviceName: string, entrypoint: string, handler = 'cron' )
| 27 | } |
| 28 | |
| 29 | export function getInternalServiceCronPath( |
| 30 | serviceName: string, |
| 31 | entrypoint: string, |
| 32 | handler = 'cron' |
| 33 | ): string { |
| 34 | const normalizedEntrypoint = normalizeInternalServiceEntrypoint(entrypoint); |
| 35 | return `${getInternalServiceCronPathPrefix(serviceName)}/${normalizedEntrypoint}/${handler}`; |
| 36 | } |
no test coverage detected