mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 08:21:43 -04:00
12 lines
208 B
Go
12 lines
208 B
Go
package packer
|
|
|
|
type TestPostProcessor struct{}
|
|
|
|
func (*TestPostProcessor) Configure(interface{}) error {
|
|
return nil
|
|
}
|
|
|
|
func (*TestPostProcessor) PostProcess(Artifact) (Artifact, error) {
|
|
return nil, nil
|
|
}
|