7 lines
206 B
Go
7 lines
206 B
Go
package node
|
|
|
|
import "regexp"
|
|
|
|
// VersionRegexp describes the regular expression for determining the version
|
|
// from the OS Release field of the Node.
|
|
var VersionRegexp = regexp.MustCompile(`^.*\((v.*)\)`)
|