mirror of
https://github.com/ggicci/httpin.git
synced 2025-07-01 00:34:50 +02:00
8 lines
130 B
Go
8 lines
130 B
Go
package httpin
|
|
|
|
type UnsupportedType string
|
|
|
|
func (e UnsupportedType) Error() string {
|
|
return "unsupported type: " + string(e)
|
|
}
|