Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/srndv2/src/srnd/version.go
Jeff Becker 3a6cbf9de6 move srndv2 to nntpchan repo with vendored deps so that nothing breaks every again
this deprecates the github.com/majestrate/srndv2 repo
2017-04-03 10:00:38 -04:00

16 lines
265 B
Go

//
// version.go -- contains srnd version strings
//
package srnd
import "fmt"
var major_version = 4
var minor_version = 0
var program_name = "srnd"
func Version() string {
return fmt.Sprintf("%s version 2.%d.%d", program_name, major_version, minor_version)
}