fix: Use new error names in MTIO stubs

This commit is contained in:
Felicitas Pojtinger
2021-12-20 01:58:34 +01:00
parent aa89e55249
commit 7884d34ba2
2 changed files with 5 additions and 5 deletions

8
internal/cache/error.go vendored Normal file
View File

@@ -0,0 +1,8 @@
package cache
import "errors"
var (
ErrCacheTypeUnsupported = errors.New("cache type unsupported")
ErrCacheTypeUnknown = errors.New("cache type unknown")
)