Commit 208daf7d authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer: Hook interface, not hooked up yet

parent de03e976
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{})
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment