aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/opml
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2017-12-12 21:48:13 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2017-12-12 21:48:13 -0800
commit84d912c9794eaaef0f06638d9d23716f4e02b42f (patch)
treef02f77cbd1213c8dbf9d3f9518a2c7e576b0e5c0 /reader/opml
parent9b1128d56dc2129a8cb90e882f67155ab74521b9 (diff)
Rewrite imports
Diffstat (limited to 'reader/opml')
-rw-r--r--reader/opml/handler.go4
-rw-r--r--reader/opml/parser.go2
-rw-r--r--reader/opml/parser_test.go2
3 files changed, 4 insertions, 4 deletions
diff --git a/reader/opml/handler.go b/reader/opml/handler.go
index 9d5fb0f..192e04a 100644
--- a/reader/opml/handler.go
+++ b/reader/opml/handler.go
@@ -10,8 +10,8 @@ import (
"io"
"log"
- "github.com/miniflux/miniflux2/model"
- "github.com/miniflux/miniflux2/storage"
+ "github.com/miniflux/miniflux/model"
+ "github.com/miniflux/miniflux/storage"
)
// Handler handles the logic for OPML import/export.
diff --git a/reader/opml/parser.go b/reader/opml/parser.go
index 1b2e1e7..8d61aa8 100644
--- a/reader/opml/parser.go
+++ b/reader/opml/parser.go
@@ -8,7 +8,7 @@ import (
"encoding/xml"
"io"
- "github.com/miniflux/miniflux2/errors"
+ "github.com/miniflux/miniflux/errors"
"golang.org/x/net/html/charset"
)
diff --git a/reader/opml/parser_test.go b/reader/opml/parser_test.go
index 8d56df5..12c8048 100644
--- a/reader/opml/parser_test.go
+++ b/reader/opml/parser_test.go
@@ -8,7 +8,7 @@ import (
"bytes"
"testing"
- "github.com/miniflux/miniflux2/errors"
+ "github.com/miniflux/miniflux/errors"
)
func TestParseOpmlWithoutCategories(t *testing.T) {