|
|
|
@ -24,10 +24,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
*/ |
|
|
|
package logger |
|
|
|
|
|
|
|
const ( |
|
|
|
VERSION = "m4_version" |
|
|
|
REVISION = "m4_revision" |
|
|
|
BUILD_TIME = "m4_build_time" |
|
|
|
import ( |
|
|
|
"gitlab.weird-web-workers.org/golang/version" |
|
|
|
) |
|
|
|
|
|
|
|
var ( |
|
|
|
VERSION = version.Version{ |
|
|
|
Package: "m4_package", |
|
|
|
Version: "m4_version", |
|
|
|
Revision: "m4_revision", |
|
|
|
BuildTime: "m4_build_time", |
|
|
|
} |
|
|
|
) |
|
|
|
|
|
|
|
// vim: ts=4 sts=4 sw=4 noet tw=72: |