test multiple

This commit is contained in:
Sotirios Pupakis
2025-09-08 21:30:25 +02:00
parent 93b73d7bea
commit 6d725b9f5f
2 changed files with 72 additions and 25 deletions

View File

@@ -61,11 +61,13 @@ type Manifest struct {
Size int `json:"size"`
Offsets []int `json:"offsets"`
} `json:"remainder"`
Fragments []struct {
Sha512 string `json:"sha512"`
Size int `json:"size"`
Offsets []int `json:"offsets"`
} `json:"fragments"`
Fragments []Fragment `json:"fragments"`
}
type Fragment struct {
Sha512 string `json:"sha512"`
Size int `json:"size"`
Offsets []int `json:"offsets"`
}
type RDBHeader struct {