packer: Hook interface, not hooked up yet

pull/15/head
Mitchell Hashimoto 13 years ago
parent de03e97643
commit 208daf7d03

@ -0,0 +1,12 @@
package packer
// A Hook is used to hook into an arbitrarily named location in a build,
// allowing custom behavior to run at certain points along a build.
//
// Run is called when the hook is called, with the name of the hook and
// arbitrary data associated with it. To know what format the data is in,
// you must reference the documentation for the specific hook you're interested
// in.
type Hook interface {
Run(string, interface{})
}
Loading…
Cancel
Save