2026-05-13 16:07:25 +08:00

15 lines
319 B
Go

package upload
type uploadPolicy struct {
allowedExtensions map[string]struct{}
kind string
requireImage bool
}
type uploadResult struct {
URL string `json:"url"`
ObjectKey string `json:"object_key"`
ContentType string `json:"content_type"`
SizeBytes int64 `json:"size_bytes"`
}