From fbc2013b8c767fdc6f101b92078f16c1e2aa994d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 7 May 2013 19:50:34 -0700 Subject: [PATCH] packer/plugin: Documentation --- packer/plugin/plugin.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packer/plugin/plugin.go b/packer/plugin/plugin.go index 9ff71e235..dbd43cf6e 100644 --- a/packer/plugin/plugin.go +++ b/packer/plugin/plugin.go @@ -1,6 +1,10 @@ -// The packer/plugin package provides the functionality required for writing -// Packer plugins in the form of static binaries that are then executed and -// run. It also contains the functions necessary to run these external plugins. +// The plugin package provides the functionality to both expose a Packer +// plugin binary and to connect to an existing Packer plugin binary. +// +// 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 import (