http

package
v2.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 22, 2025 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// MakeRequest is an eitherized version of [http.NewRequest]
	MakeRequest = ioeither.Eitherize3(http.NewRequest)

	// specialize
	MakeGetRequest = makeRequest("GET", nil)
)

Functions

This section is empty.

Types

type Client

type Client interface {
	Do(Requester) ioeither.IOEither[error, *http.Response]
}

func MakeClient

func MakeClient(httpClient *http.Client) Client

type Kleisli

type Kleisli[E, A, B any] = ioeither.Kleisli[E, A, B]

func MakeBodyRequest

func MakeBodyRequest(method string, body ioeither.IOEither[error, []byte]) Kleisli[error, string, *http.Request]

MakeBodyRequest creates a request that carries a body

func ReadAll

func ReadAll(client Client) Kleisli[error, Requester, []byte]

ReadAll sends a request and reads the response as bytes

func ReadFullResponse

func ReadFullResponse(client Client) Kleisli[error, Requester, H.FullResponse]

ReadFullResponse sends a request, reads the response as a byte array and represents the result as a tuple

func ReadJSON

func ReadJSON[A any](client Client) Kleisli[error, Requester, A]

ReadJSON sends a request, reads the response and parses the response as JSON

func ReadJson deprecated

func ReadJson[A any](client Client) Kleisli[error, Requester, A]

ReadJson sends a request, reads the response and parses the response as JSON

Deprecated: use ReadJSON instead

func ReadText

func ReadText(client Client) Kleisli[error, Requester, string]

ReadText sends a request, reads the response and represents the response as a text string

type ReaderIOEither

type ReaderIOEither[R, E, A any] = readerioeither.ReaderIOEither[R, E, A]

type Requester

type Requester = ioeither.IOEither[error, *http.Request]

Requester is a reader that constructs a request

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL