1
0
mirror of https://github.com/ggicci/httpin.git synced 2024-12-02 09:01:33 +02:00
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)
}