summaryrefslogtreecommitdiff
path: root/hclwrite/parser.go
diff options
context:
space:
mode:
authorMartin Atkins <mart@degeneration.co.uk>2019-09-09 16:08:19 -0700
committerMartin Atkins <mart@degeneration.co.uk>2019-09-09 16:08:19 -0700
commit6c4344623b6ac528a57f9b80e4622acfab2fde40 (patch)
tree83031084d3ab54abbe40e3fd749e439c8b28e9d1 /hclwrite/parser.go
parent0f5ab3bd563c111077917020c0cbc8c211e1bff3 (diff)
Unfold the "hcl" directory up into the root
The main HCL package is more visible this way, and so it's easier than having to pick it out from dozens of other package directories.
Diffstat (limited to 'hclwrite/parser.go')
-rw-r--r--hclwrite/parser.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/hclwrite/parser.go b/hclwrite/parser.go
index a3cbe3d..d6cf532 100644
--- a/hclwrite/parser.go
+++ b/hclwrite/parser.go
@@ -4,8 +4,8 @@ import (
"fmt"
"sort"
- "github.com/hashicorp/hcl/v2/hcl"
- "github.com/hashicorp/hcl/v2/hcl/hclsyntax"
+ "github.com/hashicorp/hcl/v2"
+ "github.com/hashicorp/hcl/v2/hclsyntax"
"github.com/zclconf/go-cty/cty"
)