move big into big

This commit is contained in:
Bel LaPointe
2021-02-21 12:44:43 -06:00
parent 7f2d451ca4
commit e22f272906
6 changed files with 24 additions and 13 deletions

10
errors.go Executable file → Normal file
View File

@@ -1,9 +1,7 @@
package storage
import "errors"
import "local/storage/resolve"
var ErrNotFound = errors.New("not found")
var ErrNotImpl = errors.New("not implemented")
var ErrCantConnect = errors.New("cannot connect")
var ErrNotFound = resolve.ErrNotFound
var ErrNotImpl = resolve.ErrNotImpl
var ErrCantConnect = resolve.ErrCantConnect