summaryrefslogtreecommitdiffstats
path: root/tpl/data
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 19:07:35 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 19:12:10 +0200
commit873a6f18851bcda79d562ff6c02e1109e8e31a88 (patch)
treedd6bc11de530ad9fc05be0ff1d0b3c84afb67b5e /tpl/data
parentf503d76a3b2719bbb65ab9df5595d0dbc871fae9 (diff)
Run gofmt to get imports in line vs gohugoio/hugo
Diffstat (limited to 'tpl/data')
-rw-r--r--tpl/data/cache.go2
-rw-r--r--tpl/data/resources.go2
-rw-r--r--tpl/data/resources_test.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/tpl/data/cache.go b/tpl/data/cache.go
index a9b0f0138..b4f91c0f8 100644
--- a/tpl/data/cache.go
+++ b/tpl/data/cache.go
@@ -18,9 +18,9 @@ import (
"net/url"
"sync"
- "github.com/spf13/afero"
"github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/helpers"
+ "github.com/spf13/afero"
)
var cacheMu sync.RWMutex
diff --git a/tpl/data/resources.go b/tpl/data/resources.go
index bc9d4b7c4..11c35f9d9 100644
--- a/tpl/data/resources.go
+++ b/tpl/data/resources.go
@@ -21,9 +21,9 @@ import (
"sync"
"time"
- "github.com/spf13/afero"
"github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/helpers"
+ "github.com/spf13/afero"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/tpl/data/resources_test.go b/tpl/data/resources_test.go
index 31e782362..de83f771d 100644
--- a/tpl/data/resources_test.go
+++ b/tpl/data/resources_test.go
@@ -23,11 +23,11 @@ import (
"testing"
"time"
- "github.com/spf13/afero"
"github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/deps"
"github.com/gohugoio/hugo/helpers"
"github.com/gohugoio/hugo/hugofs"
+ "github.com/spf13/afero"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"