fmt
This commit is contained in:
parent
f4e9dda0ea
commit
3728e1cfc0
|
@ -54,7 +54,7 @@ type ResourceVariable struct {
|
||||||
type UserVariable struct {
|
type UserVariable struct {
|
||||||
Name string
|
Name string
|
||||||
|
|
||||||
key string
|
key string
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewResourceVariable(key string) (*ResourceVariable, error) {
|
func NewResourceVariable(key string) (*ResourceVariable, error) {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ func (w *variableDetectWalker) Primitive(v reflect.Value) error {
|
||||||
type variableReplaceWalker struct {
|
type variableReplaceWalker struct {
|
||||||
Values map[string]string
|
Values map[string]string
|
||||||
|
|
||||||
loc reflectwalk.Location
|
loc reflectwalk.Location
|
||||||
m, mk reflect.Value
|
m, mk reflect.Value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue