| 287 | } |
| 288 | |
| 289 | type builtinHandler struct { |
| 290 | fn BuiltinFunc |
| 291 | args []string |
| 292 | // workingDir is the hook's working_dir override (possibly relative); |
| 293 | // baseDir is the executor's working directory it resolves against. |
| 294 | workingDir string |
| 295 | baseDir string |
| 296 | env []string |
| 297 | } |
| 298 | |
| 299 | func (h *builtinHandler) Run(ctx context.Context, input []byte) (HandlerResult, error) { |
| 300 | var in Input |
nothing calls this directly
no outgoing calls
no test coverage detected