mirror of https://github.com/hashicorp/packer
parent
04a8bfb455
commit
e2534fe88d
@ -0,0 +1,19 @@
|
||||
package packer
|
||||
|
||||
type TestArtifact struct{}
|
||||
|
||||
func (*TestArtifact) BuilderId() string {
|
||||
return "bid"
|
||||
}
|
||||
|
||||
func (*TestArtifact) Files() []string {
|
||||
return []string{"a", "b"}
|
||||
}
|
||||
|
||||
func (*TestArtifact) Id() string {
|
||||
return "id"
|
||||
}
|
||||
|
||||
func (*TestArtifact) String() string {
|
||||
return "string"
|
||||
}
|
||||
Loading…
Reference in new issue