Commit de03e976 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer: More comments/docs

parent 4fc76443
...@@ -10,8 +10,10 @@ import ( ...@@ -10,8 +10,10 @@ import (
"strings" "strings"
) )
// The function type used to lookup Builder implementations.
type BuilderFunc func(name string) (Builder, error) type BuilderFunc func(name string) (Builder, error)
// The function type used to lookup Command implementations.
type CommandFunc func(name string) (Command, error) type CommandFunc func(name string) (Command, error)
// The environment interface provides access to the configuration and // The environment interface provides access to the configuration and
......
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