cronsun/version.go

13 lines
147 B
Go
Raw Normal View History

2017-05-12 06:48:24 +00:00
package cronsun
2017-04-18 09:41:54 +00:00
import (
"fmt"
"runtime"
)
2017-09-14 02:35:30 +00:00
const Binary = "v0.2.1"
2017-04-18 09:41:54 +00:00
var (
Version = fmt.Sprintf("%s (build %s)", Binary, runtime.Version())
)