fileaccess.go 193 B

123456789101112
  1. package rpcs
  2. // ArgsMoveFile move file rpc args
  3. type ArgsMoveFile struct {
  4. Source string
  5. Target string
  6. }
  7. // ReplyMoveFile move file rpc reply
  8. type ReplyMoveFile struct {
  9. FilePath string
  10. }