recommender/pkg/consts/category.go
2024-11-10 03:49:53 +08:00

9 lines
165 B
Go

package consts
import "errors"
var (
ErrCategoryExists = errors.New("category already exists")
ErrCategoryNotExists = errors.New("category does not exist")
)