recipes2/internal/storage/storage.go

11 lines
157 B
Go

package storage
import (
"errors"
)
var (
ErrRecipeNotFound = errors.New("recipe not found")
ErrCategoryNotFound = errors.New("category not found")
)