9 lines
150 B
Go
9 lines
150 B
Go
package nfs
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func onRmDir(ctx context.Context, w *response, userHandle Handler) error {
|
|
return onRemove(ctx, w, userHandle)
|
|
}
|