| 123456789101112131415161718192021222324 |
- package models
- import (
- )
- type StorageResult struct {
-
- //result
- Result int32 `json:"result"`
- //ip
- Ip string `json:"ip"`
- //port
- Port int32 `json:"port"`
- //id
- Id int32 `json:"id"`
- //hash
- Hash string `json:"hash"`
- //len
- Len int32 `json:"len"`
- //error
- Error string `json:"error"`
- }
|