8 lines
140 B
Go
8 lines
140 B
Go
package model
|
|
|
|
type ErrInfo struct {
|
|
Cause string `json:"cause"`
|
|
Message string `json:"message"`
|
|
Response int `json:"response"`
|
|
}
|