fmt
This commit is contained in:
parent
47c7a30bbd
commit
95767b9d85
|
@ -8,13 +8,13 @@ import (
|
||||||
const BuilderId = "mitchellh.post-processor.vagrant"
|
const BuilderId = "mitchellh.post-processor.vagrant"
|
||||||
|
|
||||||
type Artifact struct {
|
type Artifact struct {
|
||||||
Path string
|
Path string
|
||||||
Provider string
|
Provider string
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewArtifact(provider, path string) *Artifact {
|
func NewArtifact(provider, path string) *Artifact {
|
||||||
return &Artifact{
|
return &Artifact{
|
||||||
Path: path,
|
Path: path,
|
||||||
Provider: provider,
|
Provider: provider,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ var builtins = map[string]string{
|
||||||
"mitchellh.amazonebs": "aws",
|
"mitchellh.amazonebs": "aws",
|
||||||
}
|
}
|
||||||
|
|
||||||
type Config struct{
|
type Config struct {
|
||||||
OutputPath string `mapstructure:"output"`
|
OutputPath string `mapstructure:"output"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue