aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/rss/rss.go
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 /reader/rss/rss.go
parent7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff)
Use canonical imports
Diffstat (limited to 'reader/rss/rss.go')
-rw-r--r--reader/rss/rss.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/reader/rss/rss.go b/reader/rss/rss.go
index 5ccbb0e..fa6c832 100644
--- a/reader/rss/rss.go
+++ b/reader/rss/rss.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 rss
+package rss // import "miniflux.app/reader/rss"
import (
"encoding/xml"
@@ -11,12 +11,12 @@ import (
"strings"
"time"
- "github.com/miniflux/miniflux/crypto"
- "github.com/miniflux/miniflux/logger"
- "github.com/miniflux/miniflux/model"
- "github.com/miniflux/miniflux/reader/date"
- "github.com/miniflux/miniflux/reader/sanitizer"
- "github.com/miniflux/miniflux/url"
+ "miniflux.app/crypto"
+ "miniflux.app/logger"
+ "miniflux.app/model"
+ "miniflux.app/reader/date"
+ "miniflux.app/reader/sanitizer"
+ "miniflux.app/url"
)
type rssFeed struct {