1
0
mirror of https://github.com/ggicci/httpin.git synced 2025-07-01 00:34:50 +02:00
Files
httpin/errors.go
2021-04-21 13:38:48 +08:00

8 lines
130 B
Go

package httpin
type UnsupportedType string
func (e UnsupportedType) Error() string {
return "unsupported type: " + string(e)
}