Mercurial > yakumo_izuru > aya
view version.go @ 54:4d411cdd68c1 draft
Updated manual page and added a Makefile
author | novaburst |
---|---|
date | Fri, 07 Jan 2022 23:20:51 +0000 |
parents | 88a7d4a1ff62 |
children | c6785950280e |
line wrap: on
line source
package main import ( "fmt" ) var ( // Version release version Version = "0.0.1" // Commit will be overwritten automatically by the build system Commit = "HEAD" ) // FullVersion display the full version and build func FullVersion() string { return fmt.Sprintf("%s@%s", Version, Commit) }