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"
)
const Binary = "v0.1.0"
var (
Version = fmt.Sprintf("%s (build %s)", Binary, runtime.Version())
)