aboutsummaryrefslogtreecommitdiffhomepage
path: root/config
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-08-24 21:51:50 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-08-24 21:56:39 -0700
commitdbcc5d8a972f4f169e9e2c0636450555a06152b9 (patch)
tree00d7ed89efc2ffdbfa4c602ba66b0c156d48cb0d /config
parent7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff)
Use canonical imports
Diffstat (limited to 'config')
-rw-r--r--config/config.go4
-rw-r--r--config/config_test.go2
-rw-r--r--config/doc.go2
3 files changed, 4 insertions, 4 deletions
diff --git a/config/config.go b/config/config.go
index 580f01d..c13a7f9 100644
--- a/config/config.go
+++ b/config/config.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package config
+package config // import "miniflux.app/config"
import (
"net/url"
@@ -10,7 +10,7 @@ import (
"strconv"
"strings"
- "github.com/miniflux/miniflux/logger"
+ "miniflux.app/logger"
)
const (
diff --git a/config/config_test.go b/config/config_test.go
index 1f91add..a32edfc 100644
--- a/config/config_test.go
+++ b/config/config_test.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package config
+package config // import "miniflux.app/config"
import (
"os"
diff --git a/config/doc.go b/config/doc.go
index f2e9211..a5c6547 100644
--- a/config/doc.go
+++ b/config/doc.go
@@ -7,4 +7,4 @@
Package config handles configuration values for Miniflux application.
*/
-package config
+package config // import "miniflux.app/config"