Skip to content

Commit

Permalink
chore: restclient v1.0.5 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
henomis committed Aug 7, 2023
1 parent b6c78eb commit b0c168f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/henomis/qdrant-go

go 1.20

require github.com/henomis/restclientgo v1.0.3
require github.com/henomis/restclientgo v1.0.5
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github.com/henomis/restclientgo v1.0.3 h1:y5+ydfvWJ0/7crObdnCHSn7ya/h1whD+PV4Ir2dZ9Ig=
github.com/henomis/restclientgo v1.0.3/go.mod h1:xIeTCu2ZstvRn0fCukNpzXLN3m/kRTU0i0RwAbv7Zug=
github.com/henomis/restclientgo v1.0.5 h1:xMuznJLagE8nGrmFPyBkzsDztJm2A7uMLNGMBY5iWSg=
github.com/henomis/restclientgo v1.0.5/go.mod h1:xIeTCu2ZstvRn0fCukNpzXLN3m/kRTU0i0RwAbv7Zug=
10 changes: 9 additions & 1 deletion response/response.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package response

import "io"
import (
"io"

"github.com/henomis/restclientgo"
)

type Response struct {
Code int `json:"-"`
Expand Down Expand Up @@ -35,3 +39,7 @@ func (r *Response) SetBody(body io.Reader) error {

return nil
}

func (r *Response) SetHeaders(headers restclientgo.Headers) error {
return nil
}

0 comments on commit b0c168f

Please sign in to comment.