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 /version | |
parent | 7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff) |
Use canonical imports
Diffstat (limited to 'version')
-rw-r--r-- | version/doc.go | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/version/doc.go b/version/doc.go index fd58a6d..0d59429 100644 --- a/version/doc.go +++ b/version/doc.go @@ -7,4 +7,4 @@ Package version contains application and build information. */ -package version +package version // import "miniflux.app/version" diff --git a/version/version.go b/version/version.go index 2b9c050..0a9e488 100644 --- a/version/version.go +++ b/version/version.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 version +package version // import "miniflux.app/version" // Version of the application (generated with "make build") var Version = "2.0.x-dev" |