aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/homemade/scl/decode.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/homemade/scl/decode.go')
-rw-r--r--vendor/github.com/homemade/scl/decode.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/homemade/scl/decode.go b/vendor/github.com/homemade/scl/decode.go
new file mode 100644
index 0000000..cb2b49e
--- /dev/null
+++ b/vendor/github.com/homemade/scl/decode.go
@@ -0,0 +1,21 @@
+package scl
+
+import "github.com/hashicorp/hcl"
+
+/*
+DecodeFile reads the given input file and decodes it into the structure given by `out`.
+*/
+func DecodeFile(out interface{}, path string) error {
+
+ parser, err := NewParser(NewDiskSystem())
+
+ if err != nil {
+ return err
+ }
+
+ if err := parser.Parse(path); err != nil {
+ return err
+ }
+
+ return hcl.Decode(out, parser.String())
+}