9 lines
165 B
Go
9 lines
165 B
Go
package consts
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrCategoryExists = errors.New("category already exists")
|
|
ErrCategoryNotExists = errors.New("category does not exist")
|
|
)
|