repo.or.cz
/
aya.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add functions to build Amber and GCSS (taken from original project)
[aya.git]
/
version.go
blob
abbbb4aa5c95dd8dc5f19574815da16f2efd6955
1
package
aya
2
3
import
(
4
"fmt"
5
)
6
7
var
(
8
// Version release version
9
Version
=
"0.0.1"
10
11
// Commit will be overwritten automatically by the build system
12
Commit
=
"HEAD"
13
)
14
15
// FullVersion display the full version and build
16
func
FullVersion
()
string
{
17
return
fmt
.
Sprintf
(
"
%s
@
%s
"
,
Version
,
Commit
)
18
}