tstor/pkg/go-nfs/nfs_onrmdir.go

10 lines
150 B
Go
Raw Permalink Normal View History

2024-03-28 13:09:42 +00:00
package nfs
import (
"context"
)
func onRmDir(ctx context.Context, w *response, userHandle Handler) error {
return onRemove(ctx, w, userHandle)
}