Simple chunking test

This commit is contained in:
2026-02-20 00:20:19 +01:00
parent 2b7686ab85
commit f7feb59f42
9 changed files with 170 additions and 0 deletions

11
models/models.go Normal file
View File

@@ -0,0 +1,11 @@
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"`
}