github.com/moleculer-go/moleculer@v0.3.3/version/version.go (about)

     1  package version
     2  
     3  //TODO: find out a good way to get these versions.
     4  func Moleculer() string {
     5  	return "0.1.0"
     6  }
     7  
     8  func MoleculerProtocol() string {
     9  	return "4"
    10  }
    11  
    12  func Go() string {
    13  	return "1.5"
    14  }