aboutsummaryrefslogtreecommitdiffstats
path: root/common.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-11-08 23:46:38 +0100
committerGitHub <noreply@github.com>2016-11-08 23:46:38 +0100
commitac095bb12c4d29722b60ba9f20590fa7cfa6bc7d (patch)
tree223f36f336ba3414b1e45cac8af6c4744a5d7ef6 /common.go
parente523701393598f4fa241dd407af9ff8925507a1a (diff)
downloadgo-git-ac095bb12c4d29722b60ba9f20590fa7cfa6bc7d.tar.gz
new plumbing package (#118)
* plumbing: now core was renamed to core, and formats and clients moved inside
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
}