aboutsummaryrefslogtreecommitdiffhomepage
path: root/http/client
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 /http/client
parent7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff)
Use canonical imports
Diffstat (limited to 'http/client')
-rw-r--r--http/client/client.go10
-rw-r--r--http/client/response.go4
-rw-r--r--http/client/response_test.go2
3 files changed, 8 insertions, 8 deletions
diff --git a/http/client/client.go b/http/client/client.go
index d9f3524..201b136 100644
--- a/http/client/client.go
+++ b/http/client/client.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 client
+package client // import "miniflux.app/http/client"
import (
"bytes"
@@ -18,10 +18,10 @@ import (
"strings"
"time"
- "github.com/miniflux/miniflux/errors"
- "github.com/miniflux/miniflux/logger"
- "github.com/miniflux/miniflux/timer"
- "github.com/miniflux/miniflux/version"
+ "miniflux.app/errors"
+ "miniflux.app/logger"
+ "miniflux.app/timer"
+ "miniflux.app/version"
)
const (
diff --git a/http/client/response.go b/http/client/response.go
index d4e3cdc..0efd8e2 100644
--- a/http/client/response.go
+++ b/http/client/response.go
@@ -2,15 +2,15 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package client
+package client // import "miniflux.app/http/client"
import (
"io"
"mime"
"strings"
- "github.com/miniflux/miniflux/logger"
"golang.org/x/net/html/charset"
+ "miniflux.app/logger"
)
// Response wraps a server response.
diff --git a/http/client/response_test.go b/http/client/response_test.go
index f3402a8..cd0f73d 100644
--- a/http/client/response_test.go
+++ b/http/client/response_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 client
+package client // import "miniflux.app/http/client"
import "testing"