1
0
mirror of https://github.com/ggicci/httpin.git synced 2025-07-11 01:00:14 +02:00
Files
httpin/decoders.go

20 lines
296 B
Go
Raw Normal View History

package httpin
2021-05-03 22:19:54 +08:00
import (
"reflect"
"github.com/ggicci/httpin/internal"
)
2021-05-03 22:19:54 +08:00
type Decoder internal.Decoder
2021-05-03 22:19:54 +08:00
var decoders = map[reflect.Type]Decoder{} // custom decoders
2021-05-03 22:19:54 +08:00
func decoderOf(t reflect.Type) Decoder {
dec := decoders[t]
2021-05-03 22:19:54 +08:00
if dec != nil {
return dec
}
return internal.DecoderOf(t)
2021-05-03 22:19:54 +08:00
}