You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
409 B
16 lines
409 B
package cont
|
|
|
|
import "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/s3"
|
|
|
|
type InitiateUploadResult struct {
|
|
UploadID string `json:"uploadID"` // 上传ID
|
|
PartSize int64 `json:"partSize"` // 分片大小
|
|
Sign *s3.AuthSignResult `json:"sign"` // 分片信息
|
|
}
|
|
|
|
type UploadResult struct {
|
|
Hash string `json:"hash"`
|
|
Size int64 `json:"size"`
|
|
Key string `json:"key"`
|
|
}
|