rpc/client: Implement RenameFile properly. (#1443)

This commit is contained in:
Harshavardhana
2016-05-02 03:12:18 -07:00
committed by Anand Babu (AB) Periasamy
parent 8102a4712a
commit 3bf3d18f1f
3 changed files with 40 additions and 2 deletions
+8
View File
@@ -53,3 +53,11 @@ type DeleteFileArgs struct {
Vol string
Path string
}
// RenameFileArgs rename file args.
type RenameFileArgs struct {
SrcVol string
SrcPath string
DstVol string
DstPath string
}