recipes2/internal/storage/storage.go

10 lines
86 B
Go

package storage
import (
"errors"
)
var (
ErrNotFound = errors.New("not found")
)