(ctx context.Context, path string)
| 43 | // Operator defines the interface for file operations |
| 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) |
no outgoing calls