aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer
diff options
context:
space:
mode:
authorSantiago M. Mola <santi@mola.io>2017-06-13 14:27:45 +0200
committerSantiago M. Mola <santi@mola.io>2017-06-13 14:27:45 +0200
commit78dfa584698c14c7d8cdd822a65f6db9e053de7a (patch)
tree6f15c060bbfe72187999540779fb1226ce041fc5 /plumbing/storer
parent2a00316b65585be2bf68e1ea9c0e42c6af4f5679 (diff)
downloadgo-git-78dfa584698c14c7d8cdd822a65f6db9e053de7a.tar.gz
fix gofmt
Diffstat (limited to 'plumbing/storer')
-rw-r--r--plumbing/storer/storer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/storer/storer.go b/plumbing/storer/storer.go
index 863070d..c7bc65a 100644
--- a/plumbing/storer/storer.go
+++ b/plumbing/storer/storer.go
@@ -8,7 +8,7 @@ type Storer interface {
// Initializer should be implemented by storers that require to perform any
// operation when creating a new repository (i.e. git init).
-type Initializer interface{
+type Initializer interface {
// Init performs initialization of the storer and returns the error, if
// any.
Init() error