Move ErrNotFound to common package

Will help avoid future import cycles.
This commit is contained in:
Ashlie Martinez 2023-10-05 10:51:33 -07:00
parent bb5700917b
commit d2253145bf
2 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1,5 @@
package errs
import "github.com/alcionai/clues"
var NotFound = clues.New("not found")

View File

@ -3,15 +3,11 @@ package data
import (
"context"
"github.com/alcionai/clues"
"github.com/alcionai/corso/src/pkg/control"
"github.com/alcionai/corso/src/pkg/fault"
"github.com/alcionai/corso/src/pkg/path"
)
var ErrNotFound = clues.New("not found")
type CollectionState int
const (