source:
code/trunk/version.go@
72
Last change on this file since 72 was 71, checked in by , 7 weeks ago | |
---|---|
File size: 203 bytes |
Line | |
---|---|
1 | package mai |
2 | |
3 | import ( |
4 | "fmt" |
5 | ) |
6 | |
7 | var ( |
8 | // Version release version |
9 | Version = "0.0.1" |
10 | ) |
11 | |
12 | // FullVersion display the full version and build |
13 | func FullVersion() string { |
14 | return fmt.Sprintf("%s", Version) |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.