mirror of
https://github.com/eyebluecn/tank.git
synced 2024-04-21 12:32:16 +00:00
11 lines
151 B
Go
11 lines
151 B
Go
package rest
|
|
|
|
type WebError struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
func (this *WebError) Error() string {
|
|
return this.Msg
|
|
}
|