MCPcopy Create free account
hub / github.com/go-chi/render / DecodeForm

Function DecodeForm

decoder.go:54–57  ·  view source on GitHub ↗

DecodeForm decodes a given reader into an interface using the form decoder.

(r io.Reader, v interface{})

Source from the content-addressed store, hash-verified

52
53// DecodeForm decodes a given reader into an interface using the form decoder.
54func DecodeForm(r io.Reader, v interface{}) error {
55 decoder := form.NewDecoder(r) //nolint:errcheck
56 return decoder.Decode(v)
57}

Callers 1

DefaultDecoderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…