aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-03 15:53:53 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-03 15:53:53 +0200
commit40f7f691d4143c7be4dc72babb2b5288cbfef45c (patch)
tree34bd8c439035a55336e4a5b06145033d282888e7 /main.go
parent416be8872c0066a84a3e03622bb3dbb7c5544eea (diff)
downloadfeed2imap-go-40f7f691d4143c7be4dc72babb2b5288cbfef45c.tar.gz
feed2imap-go-40f7f691d4143c7be4dc72babb2b5288cbfef45c.tar.bz2
feed2imap-go-40f7f691d4143c7be4dc72babb2b5288cbfef45c.zip
Explicit version info
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index 074c14b..b959076 100644
--- a/main.go
+++ b/main.go
@@ -10,6 +10,7 @@ import (
"github.com/Necoro/feed2imap-go/internal/imap"
"github.com/Necoro/feed2imap-go/pkg/config"
"github.com/Necoro/feed2imap-go/pkg/log"
+ "github.com/Necoro/feed2imap-go/pkg/version"
)
var printVersion = flag.Bool("version", false, "print version and exit")
@@ -51,7 +52,7 @@ func processFeed(feed *feed.Feed, client *imap.Client, dryRun bool) {
func run() error {
flag.Parse()
if *printVersion {
- println("Feed2Imap-Go, version " + config.Version())
+ println("Feed2Imap-Go, version " + version.Version())
return nil
}