1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-11-27 18:45:40 +00:00
imgsrv/version.go

13 lines
153 B
Go
Raw Normal View History

package main
import (
"fmt"
)
var (
MAJOR int = 1
MINOR int = 0
TINY int = 0
VERSION string = fmt.Sprintf("%d.%d.%d", MAJOR, MINOR, TINY)
)