({ workPath })
| 42 | * by services auto-detection. |
| 43 | */ |
| 44 | export const detectEntrypoint: DetectEntrypointFn = async ({ workPath }) => { |
| 45 | const file = await detectGoEntrypoint(workPath); |
| 46 | if (!file) return null; |
| 47 | return { kind: 'file', entrypoint: file }; |
| 48 | }; |
no test coverage detected