Missed errors file

This commit is contained in:
Christopher LaPointe
2023-05-31 22:05:16 -04:00
parent 51fa28a1f3
commit b48fff862e

7
pkg/service/errors.go Normal file
View File

@@ -0,0 +1,7 @@
package service
import "errors"
var (
ErrProviderNotFound = errors.New("provider not found")
)