Commit fbc2013b authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer/plugin: Documentation

parent 70d378b9
// The packer/plugin package provides the functionality required for writing // The plugin package provides the functionality to both expose a Packer
// Packer plugins in the form of static binaries that are then executed and // plugin binary and to connect to an existing Packer plugin binary.
// run. It also contains the functions necessary to run these external plugins. //
// Packer supports plugins in the form of self-contained external static
// Go binaries. These binaries behave in a certain way (enforced by this
// package) and are connected to in a certain way (also enforced by this
// package).
package plugin package plugin
import ( import (
......
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