fix: awsv4 signatures + http client

This commit is contained in:
Milas Bowman 2025-03-28 21:50:12 -04:00
parent bdf9298496
commit f47bdf7fd2
Signed by: milas
SSH key fingerprint: SHA256:ek2D5l1HA34B3wbdErz0QOXm1E46CVvyf/nM4Fwfx/U
7 changed files with 36 additions and 16 deletions

View file

@ -54,9 +54,9 @@ type BatchSearchResult struct {
}
type SearchResultItem struct {
SortKey string `json:"sk"`
CausalityToken string `json:"ct"`
Values []Item `json:"v"`
SortKey string `json:"sk"`
CausalityToken CausalityToken `json:"ct"`
Values []Item `json:"v"`
}
func (c *Client) ReadBatch(ctx context.Context, b Bucket, q []BatchSearch) ([]*BatchSearchResult, error) {