aboutsummaryrefslogtreecommitdiffhomepage
path: root/oauth2
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 /oauth2
parent7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff)
Use canonical imports
Diffstat (limited to 'oauth2')
-rw-r--r--oauth2/doc.go2
-rw-r--r--oauth2/google.go2
-rw-r--r--oauth2/manager.go2
-rw-r--r--oauth2/profile.go2
-rw-r--r--oauth2/provider.go2
5 files changed, 5 insertions, 5 deletions
diff --git a/oauth2/doc.go b/oauth2/doc.go
index 2254a3f..4fee931 100644
--- a/oauth2/doc.go
+++ b/oauth2/doc.go
@@ -7,4 +7,4 @@
Package oauth2 abstracts different OAuth2 providers.
*/
-package oauth2
+package oauth2 // import "miniflux.app/oauth2"
diff --git a/oauth2/google.go b/oauth2/google.go
index e57e027..5d3ca49 100644
--- a/oauth2/google.go
+++ b/oauth2/google.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 oauth2
+package oauth2 // import "miniflux.app/oauth2"
import (
"context"
diff --git a/oauth2/manager.go b/oauth2/manager.go
index 08360a9..f1ba7d9 100644
--- a/oauth2/manager.go
+++ b/oauth2/manager.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 oauth2
+package oauth2 // import "miniflux.app/oauth2"
import "errors"
diff --git a/oauth2/profile.go b/oauth2/profile.go
index 488ffb2..b43f07c 100644
--- a/oauth2/profile.go
+++ b/oauth2/profile.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 oauth2
+package oauth2 // import "miniflux.app/oauth2"
// Profile is the OAuth2 user profile.
type Profile struct {
diff --git a/oauth2/provider.go b/oauth2/provider.go
index c43931c..04f9214 100644
--- a/oauth2/provider.go
+++ b/oauth2/provider.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 oauth2
+package oauth2 // import "miniflux.app/oauth2"
// Provider is an interface for OAuth2 providers.
type Provider interface {