answer/internal/schema/err_schema.go

12 lines
228 B
Go
Raw Normal View History

2022-09-27 17:59:05 +08:00
package schema
type ErrTypeData struct {
ErrType string `json:"err_type"`
}
var ErrTypeModal = ErrTypeData{ErrType: "modal"}
var ErrTypeToast = ErrTypeData{ErrType: "toast"}
2022-11-03 20:09:04 +08:00
var ErrTypeAlert = ErrTypeData{ErrType: "alert"}