mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
14683371ee
This change updates the tailfs file and package names to their new naming convention. Updates #tailscale/corp#16827 Signed-off-by: Charlotte Brandhorst-Satzkorn <charlotte@tailscale.com>
16 lines
369 B
Go
16 lines
369 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package dirfs
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
)
|
|
|
|
// RemoveAll implements webdav.File. No removal is supported and this always
|
|
// returns os.ErrPermission.
|
|
func (dfs *FS) RemoveAll(ctx context.Context, name string) error {
|
|
return &os.PathError{Op: "rm", Path: name, Err: os.ErrPermission}
|
|
}
|