
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja> git-svn-id: file:///srv/svn/repo/marisa/trunk@65 d6811dac-2434-b64a-9ddc-f563ab233461
19 lines
300 B
Go
19 lines
300 B
Go
package marisa
|
|
|
|
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)
|
|
}
|