LocalExecutor executes commands, implements Executor interface
| 46 | |
| 47 | // LocalExecutor executes commands, implements Executor interface |
| 48 | type LocalExecutor struct { |
| 49 | env []string |
| 50 | logger *logrus.Entry |
| 51 | basePath string |
| 52 | } |
| 53 | |
| 54 | // CreateLocalExecutor returns a local executor |
| 55 | func CreateLocalExecutor(env []string) *LocalExecutor { |
nothing calls this directly
no outgoing calls
no test coverage detected