answer/internal/schema/err_schema.go

10 lines
178 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"}