aboutsummaryrefslogtreecommitdiffhomepage
path: root/errors
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 /errors
parent7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff)
Use canonical imports
Diffstat (limited to 'errors')
-rw-r--r--errors/doc.go2
-rw-r--r--errors/errors.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/errors/doc.go b/errors/doc.go
index 4c3114d..234ee5c 100644
--- a/errors/doc.go
+++ b/errors/doc.go
@@ -7,4 +7,4 @@
Package errors handles localized errors.
*/
-package errors
+package errors // import "miniflux.app/errors"
diff --git a/errors/errors.go b/errors/errors.go
index e7af7b1..b3c5530 100644
--- a/errors/errors.go
+++ b/errors/errors.go
@@ -2,12 +2,12 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package errors
+package errors // import "miniflux.app/errors"
import (
"fmt"
- "github.com/miniflux/miniflux/locale"
+ "miniflux.app/locale"
)
// LocalizedError represents an error than could be translated to another language.