MCPcopy Index your code
hub / github.com/dunglas/httpsfv / Params

Struct Params

params.go:11–14  ·  view source on GitHub ↗

Params are an ordered map of key-value pairs that are associated with an item or an inner list. See https://httpwg.org/specs/rfc9651.html#param.

Source from the content-addressed store, hash-verified

9//
10// See https://httpwg.org/specs/rfc9651.html#param.
11type Params struct {
12 names []string
13 values map[string]interface{}
14}
15
16// ErrInvalidParameterFormat is returned when the format of a parameter is invalid.
17var ErrInvalidParameterFormat = errors.New("invalid parameter format")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected