imgsrv/version.go

11 lines
158 B
Go
Raw Normal View History

package main
2013-05-09 14:01:38 +00:00
import "fmt"
var (
2013-03-27 20:30:24 +00:00
MAJOR int = 1
2013-08-06 15:09:59 +00:00
MINOR int = 2
2013-08-06 15:25:17 +00:00
TINY int = 1
2013-03-27 20:30:24 +00:00
VERSION string = fmt.Sprintf("%d.%d.%d", MAJOR, MINOR, TINY)
)