(ctx context.Context, command []string)
| 40 | } |
| 41 | |
| 42 | func (pyOperator) RunCommand(ctx context.Context, command []string) (*CommandOutput, error) { |
| 43 | return &CommandOutput{Stdout: "hello world\n", Stderr: "", ExitCode: 0}, nil |
| 44 | } |
| 45 | func (pyOperator) ReadFile(ctx context.Context, path string) (string, error) { |
| 46 | panic("implement me") |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected