mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
16 lines
409 B
Go
16 lines
409 B
Go
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"`
|
|
}
|