source:
code/trunk/version.go@
71
Last change on this file since 71 was 71, checked in by , 7 weeks ago | |
---|---|
File size: 203 bytes |
Rev | Line | |
---|---|---|
[63] | 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 { | |
[71] | 14 | return fmt.Sprintf("%s", Version) |
[63] | 15 | } |
Note:
See TracBrowser
for help on using the repository browser.