Browse Source

New version management

master
Georg Hopp 7 years ago
parent
commit
aadd4948c0
Signed by: ghopp GPG Key ID: 4C5D226768784538
  1. 15
      version.go.m4

15
version.go.m4

@ -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:
Loading…
Cancel
Save