12345678910111213141516171819 |
- package rpcs
- // ArgsMoveFile move file rpc args
- type ArgsMoveFile struct {
- ArgsWithSpan
- Source string
- Target string
- }
- // ReplyMoveFile move file rpc reply
- type ReplyMoveFile struct {
- FilePath string
- }
- // ArgsDeleteFile 删除文件参数
- type ArgsDeleteFile struct {
- ArgsWithSpan
- FileName string
- }
|