1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-02-20 00:30:04 +00:00
imgsrv/version.go

11 lines
158 B
Go
Raw Normal View History

package main
2013-05-09 10:01:38 -04:00
import "fmt"
var (
2013-03-27 16:30:24 -04:00
MAJOR int = 1
2013-05-09 10:01:38 -04:00
MINOR int = 1
2013-05-09 12:54:16 -04:00
TINY int = 1
2013-03-27 16:30:24 -04:00
VERSION string = fmt.Sprintf("%d.%d.%d", MAJOR, MINOR, TINY)
)