source: code/trunk/version.go@ 72

Last change on this file since 72 was 71, checked in by yakumo.izuru, 7 weeks ago

今では重荷がなくなったので...

File size: 203 bytes
Line 
1package mai
2
3import (
4 "fmt"
5)
6
7var (
8 // Version release version
9 Version = "0.0.1"
10)
11
12// FullVersion display the full version and build
13func FullVersion() string {
14 return fmt.Sprintf("%s", Version)
15}
Note: See TracBrowser for help on using the repository browser.