2026-05-02 13:02:38 +08:00

16 lines
344 B
Go

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