1
0
Fork 0
golang-github-nicholas-fedo.../pkg/util/jsonclient/interface.go
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

10 lines
221 B
Go

package jsonclient
import "net/http"
type Client interface {
Get(url string, response any) error
Post(url string, request any, response any) error
Headers() http.Header
ErrorResponse(err error, response any) bool
}