mirror of https://gitee.com/answerdev/answer.git
10 lines
178 B
Go
10 lines
178 B
Go
|
package schema
|
||
|
|
||
|
type ErrTypeData struct {
|
||
|
ErrType string `json:"err_type"`
|
||
|
}
|
||
|
|
||
|
var ErrTypeModal = ErrTypeData{ErrType: "modal"}
|
||
|
|
||
|
var ErrTypeToast = ErrTypeData{ErrType: "toast"}
|