-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathversionmsg.go
More file actions
17 lines (11 loc) · 642 Bytes
/
Copy pathversionmsg.go
File metadata and controls
17 lines (11 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main
// Version is used by the Makefile to set the version
var Version string = "v2.0.0"
// Build is used by the Makefile to set the build, i.e. short git fingerprint
// var Build string
var info = "mxcheck -- Copyright (C) 2019-2026 Steffen Fritz"
var license = `This program comes with ABSOLUTELY NO WARRANTY.
This is free software under GPL-3.0, and you are welcome to
redistribute it under certain conditions. See license file.`
var contact = `For bugs and feature requests use the tracker at github.com/steffenfritz/mxcheck`
var versionmsg = info + "\n\nVersion: " + Version + "\n\n" + license + "\n\n" + contact + "\n"