go-fastdfs/server/error.go
2021-05-18 14:37:12 +08:00

15 lines
199 B
Go

package server
type httpError struct {
error
statusCode int
}
func (err httpError) StatusCode() int {
return err.statusCode
}
func (err httpError) Body() []byte {
return []byte(err.Error())
}