aboutsummaryrefslogtreecommitdiffhomepage
path: root/http/client
diff options
context:
space:
mode:
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"