(ctx context.Context, path string)
| 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 | } |
| 48 | |
| 49 | func (pyOperator) WriteFile(ctx context.Context, path string, content string) error { |
| 50 | return nil |
nothing calls this directly
no outgoing calls
no test coverage detected