1
This commit is contained in:
15
internal/services/distributor/errors.go
Normal file
15
internal/services/distributor/errors.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package distributor
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
ErrUnknownDistributorServiceType = errors.New("unknown distributor service type")
|
||||
ErrInvalidConfig = errors.New("invalid config")
|
||||
|
||||
ErrBadRequest = errors.New("bad request")
|
||||
ErrForbidden = errors.New("forbidden")
|
||||
ErrNotFound = errors.New("not found")
|
||||
ErrInternal = errors.New("internal error")
|
||||
|
||||
ErrUnimplemented = errors.New("unimplemented")
|
||||
)
|
Reference in New Issue
Block a user