This commit is contained in:
Mitchell Hashimoto 2014-05-24 12:51:31 -07:00
parent f4e9dda0ea
commit 3728e1cfc0
3 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ type ResourceVariable struct {
type UserVariable struct {
Name string
key string
key string
}
func NewResourceVariable(key string) (*ResourceVariable, error) {

View File

@ -1,8 +1,8 @@
package config
import (
"io"
"fmt"
"io"
"path/filepath"
)

View File

@ -91,7 +91,7 @@ func (w *variableDetectWalker) Primitive(v reflect.Value) error {
type variableReplaceWalker struct {
Values map[string]string
loc reflectwalk.Location
loc reflectwalk.Location
m, mk reflect.Value
}