recipes2/internal/storage/storage.go

11 lines
157 B
Go
Raw Normal View History

2024-01-16 21:10:29 +02:00
package storage
import (
"errors"
)
var (
2024-01-22 17:25:45 +02:00
ErrRecipeNotFound = errors.New("recipe not found")
ErrCategoryNotFound = errors.New("category not found")
2024-01-16 21:10:29 +02:00
)