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