Files
fs/models/models.go
2026-02-20 00:20:19 +01:00

12 lines
316 B
Go

package models
type ObjectManifest struct {
Bucket string `json:"bucket"`
Key string `json:"key"`
Size int64 `json:"size"`
ContentType string `json:"content_type"`
ETag string `json:"etag"`
Chunks []string `json:"chunks"`
CreatedAt int64 `json:"created_at"`
}