packer-cn/post-processor/vagrant-cloud/step_create_provider.go

16 lines
289 B
Go

package vagrantcloud
import (
"github.com/mitchellh/multistep"
)
type stepCreateProvider struct {
}
func (s *stepCreateProvider) Run(state multistep.StateBag) multistep.StepAction {
return multistep.ActionContinue
}
func (s *stepCreateProvider) Cleanup(state multistep.StateBag) {
}