diff options
author | Frédéric Guillot <fred@miniflux.net> | 2018-08-24 21:51:50 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-08-24 21:56:39 -0700 |
commit | dbcc5d8a972f4f169e9e2c0636450555a06152b9 (patch) | |
tree | 00d7ed89efc2ffdbfa4c602ba66b0c156d48cb0d /cli | |
parent | 7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff) |
Use canonical imports
Diffstat (limited to 'cli')
-rw-r--r-- | cli/ask_credentials.go | 2 | ||||
-rw-r--r-- | cli/cli.go | 14 | ||||
-rw-r--r-- | cli/create_admin.go | 6 | ||||
-rw-r--r-- | cli/doc.go | 2 | ||||
-rw-r--r-- | cli/flush_sessions.go | 4 | ||||
-rw-r--r-- | cli/info.go | 4 | ||||
-rw-r--r-- | cli/reset_password.go | 4 |
7 files changed, 18 insertions, 18 deletions
diff --git a/cli/ask_credentials.go b/cli/ask_credentials.go index 3755f43..bd4bf5f 100644 --- a/cli/ask_credentials.go +++ b/cli/ask_credentials.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 cli +package cli // import "miniflux.app/cli" import ( "bufio" @@ -2,18 +2,18 @@ // Use of this source code is governed by the Apache 2.0 // license that can be found in the LICENSE file. -package cli +package cli // import "miniflux.app/cli" import ( "flag" "fmt" - "github.com/miniflux/miniflux/config" - "github.com/miniflux/miniflux/daemon" - "github.com/miniflux/miniflux/database" - "github.com/miniflux/miniflux/logger" - "github.com/miniflux/miniflux/storage" - "github.com/miniflux/miniflux/version" + "miniflux.app/config" + "miniflux.app/daemon" + "miniflux.app/database" + "miniflux.app/logger" + "miniflux.app/storage" + "miniflux.app/version" ) // Parse parses command line arguments. diff --git a/cli/create_admin.go b/cli/create_admin.go index fc6eb6e..372b712 100644 --- a/cli/create_admin.go +++ b/cli/create_admin.go @@ -2,14 +2,14 @@ // Use of this source code is governed by the Apache 2.0 // license that can be found in the LICENSE file. -package cli +package cli // import "miniflux.app/cli" import ( "fmt" "os" - "github.com/miniflux/miniflux/model" - "github.com/miniflux/miniflux/storage" + "miniflux.app/model" + "miniflux.app/storage" ) func createAdmin(store *storage.Storage) { @@ -7,4 +7,4 @@ Package cli implements command line arguments for Miniflux application. */ -package cli +package cli // import "miniflux.app/cli" diff --git a/cli/flush_sessions.go b/cli/flush_sessions.go index 06a56d0..5e16d3c 100644 --- a/cli/flush_sessions.go +++ b/cli/flush_sessions.go @@ -2,13 +2,13 @@ // Use of this source code is governed by the Apache 2.0 // license that can be found in the LICENSE file. -package cli +package cli // import "miniflux.app/cli" import ( "fmt" "os" - "github.com/miniflux/miniflux/storage" + "miniflux.app/storage" ) func flushSessions(store *storage.Storage) { diff --git a/cli/info.go b/cli/info.go index 2ae1cef..40db0d9 100644 --- a/cli/info.go +++ b/cli/info.go @@ -2,13 +2,13 @@ // Use of this source code is governed by the Apache 2.0 // license that can be found in the LICENSE file. -package cli +package cli // import "miniflux.app/cli" import ( "fmt" "runtime" - "github.com/miniflux/miniflux/version" + "miniflux.app/version" ) func info() { diff --git a/cli/reset_password.go b/cli/reset_password.go index 05a9b51..b9e5150 100644 --- a/cli/reset_password.go +++ b/cli/reset_password.go @@ -2,13 +2,13 @@ // Use of this source code is governed by the Apache 2.0 // license that can be found in the LICENSE file. -package cli +package cli // import "miniflux.app/cli" import ( "fmt" "os" - "github.com/miniflux/miniflux/storage" + "miniflux.app/storage" ) func resetPassword(store *storage.Storage) { |