aboutsummaryrefslogtreecommitdiffstats
path: root/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'common.go')
-rw-r--r--common.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.go b/common.go
index 2a55a37..aee932f 100644
--- a/common.go
+++ b/common.go
@@ -5,7 +5,7 @@ import (
"strings"
"gopkg.in/src-d/go-git.v4/config"
- "gopkg.in/src-d/go-git.v4/core"
+ "gopkg.in/src-d/go-git.v4/plumbing/storer"
)
// Storer is a generic storage of objects, references and any information
@@ -13,8 +13,8 @@ import (
// information in an system directory (such as `.git`) and others
// implementations are in memmory being ephemeral
type Storer interface {
- core.ObjectStorer
- core.ReferenceStorer
+ storer.ObjectStorer
+ storer.ReferenceStorer
config.ConfigStorer
}