(ctx context.Context, path string, content string)
| 44 | type Operator interface { |
| 45 | ReadFile(ctx context.Context, path string) (string, error) |
| 46 | WriteFile(ctx context.Context, path string, content string) error |
| 47 | IsDirectory(ctx context.Context, path string) (bool, error) |
| 48 | Exists(ctx context.Context, path string) (bool, error) |
| 49 | RunCommand(ctx context.Context, command []string) (*CommandOutput, error) |
no outgoing calls