mirror of https://github.com/docker/docs.git
12 lines
330 B
Go
12 lines
330 B
Go
package version
|
|
|
|
var (
|
|
// APIVersion dictates which version of the libmachine API this is.
|
|
APIVersion = 1
|
|
|
|
// ConfigVersion dictates which version of the config.json format is
|
|
// used. It needs to be bumped if there is a breaking change, and
|
|
// therefore migration, introduced to the config file format.
|
|
ConfigVersion = 3
|
|
)
|