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