mirror of
https://github.com/rancher/os.git
synced 2025-07-03 10:06:13 +00:00
12 lines
204 B
Go
12 lines
204 B
Go
package containerd
|
|
|
|
import "fmt"
|
|
|
|
const VersionMajor = 0
|
|
const VersionMinor = 2
|
|
const VersionPatch = 0
|
|
|
|
var Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
|
|
|
|
var GitCommit = ""
|