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