diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-07 22:03:46 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-07 22:03:46 +0200 |
commit | deb47998900a3b9caea4f1d36eaecfe3aba31e3d (patch) | |
tree | 751a220d3625a5f08f394830977bd754cd99fe5e /pkg/version | |
parent | dcd8b2cff159017ebbf1b0b02cb0d60b1248627d (diff) | |
download | feed2imap-go-deb47998900a3b9caea4f1d36eaecfe3aba31e3d.tar.gz feed2imap-go-deb47998900a3b9caea4f1d36eaecfe3aba31e3d.tar.bz2 feed2imap-go-deb47998900a3b9caea4f1d36eaecfe3aba31e3d.zip |
go fmt
Diffstat (limited to 'pkg/version')
-rw-r--r-- | pkg/version/version.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pkg/version/version.go b/pkg/version/version.go index eabf583..e8c5f12 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -3,8 +3,7 @@ package version // this is set by the linker during build var ( version = "devel" - commit = "" - + commit = "" ) // Version returns the current feed2imap-go version @@ -15,4 +14,4 @@ func Version() string { // FullVersion returns the version including the commit hash func FullVersion() string { return "Version " + version + " Commit: " + commit -}
\ No newline at end of file +} |