Add functions to build Amber and GCSS (taken from original project)
[aya.git] / version.go
blobabbbb4aa5c95dd8dc5f19574815da16f2efd6955
1 package aya
3 import (
4 "fmt"
7 var (
8 // Version release version
9 Version = "0.0.1"
11 // Commit will be overwritten automatically by the build system
12 Commit = "HEAD"
15 // FullVersion display the full version and build
16 func FullVersion() string {
17 return fmt.Sprintf("%s@%s", Version, Commit)