ce76b72ce58466329847f6d2a6479f47a6f5835d
[pstop.git] / version / version.go
1 // package to return the program version
2 package version
3
4 const (
5         version = "0.1.5"
6 )
7
8 // return the current application version
9 func Version() string {
10         return version
11 }