This commit is contained in:
Mitchell Hashimoto 2013-06-17 14:54:04 -07:00
parent 4236ffc8eb
commit 46108ce13f
1 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,9 @@ import (
// "interface{}" pointers since we actually don't know what their contents
// are until we read the "type" field.
type rawTemplate struct {
Builders []map[string]interface{}
Hooks map[string][]string
Provisioners []map[string]interface{}
Builders []map[string]interface{}
Hooks map[string][]string
Provisioners []map[string]interface{}
PostProcessors []map[string]interface{} `json:"post-processors"`
}