12 lines
235 B
Go
12 lines
235 B
Go
package stdmodels
|
|
|
|
type StandardMessage struct {
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type StandardError struct {
|
|
Message string `json:"message"`
|
|
Status int `json:"status"`
|
|
Description []string `json:"description"`
|
|
}
|