Update cty references to its new home in the zclconf github account

This commit is contained in:
Martin Atkins 2017-05-27 17:35:44 -07:00
parent 308eb3a291
commit 6bf26fc9cc
13 changed files with 22 additions and 22 deletions

View File

@ -4,8 +4,8 @@ import (
"fmt"
"reflect"
"github.com/apparentlymart/go-cty/cty/convert"
"github.com/apparentlymart/go-cty/cty/gocty"
"github.com/zclconf/go-cty/cty/convert"
"github.com/zclconf/go-cty/cty/gocty"
"github.com/zclconf/go-zcl/zcl"
)

View File

@ -6,7 +6,7 @@ import (
"reflect"
"testing"
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-zcl/zcl"
zclJSON "github.com/zclconf/go-zcl/zcl/json"
"github.com/davecgh/go-spew/spew"

View File

@ -1,8 +1,8 @@
package zcl
import (
"github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/function"
)
// An EvalContext provides the variables and functions that should be used

View File

@ -4,7 +4,7 @@ import (
"fmt"
"strings"
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-zcl/zcl"
hclast "github.com/hashicorp/hcl/hcl/ast"
hcltoken "github.com/hashicorp/hcl/hcl/token"

View File

@ -5,7 +5,7 @@ import (
"reflect"
"testing"
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-zcl/zcl"
"github.com/davecgh/go-spew/spew"
hclast "github.com/hashicorp/hcl/hcl/ast"

View File

@ -5,8 +5,8 @@ import (
"strconv"
"strings"
"github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/function"
"github.com/zclconf/go-zcl/zcl"
"github.com/hashicorp/hil"
hilast "github.com/hashicorp/hil/ast"

View File

@ -3,9 +3,9 @@ package hclhil
import (
"testing"
"github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function"
"github.com/apparentlymart/go-cty/cty/function/stdlib"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/function"
"github.com/zclconf/go-cty/cty/function/stdlib"
"github.com/zclconf/go-zcl/zcl"
)

View File

@ -3,7 +3,7 @@ package json
import (
"testing"
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-zcl/zcl"
)

View File

@ -3,7 +3,7 @@ package json
import (
"fmt"
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-zcl/zcl"
"github.com/zclconf/go-zcl/zcl/hclhil"
)

View File

@ -1,7 +1,7 @@
package zcl
import (
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
)
// File is the top-level node that results from parsing a ZCL file.

View File

@ -3,7 +3,7 @@ package zcl
import (
"fmt"
"github.com/apparentlymart/go-cty/cty"
"github.com/zclconf/go-cty/cty"
)
// A Traversal is a description of traversing through a value through a

View File

@ -3,9 +3,9 @@ package zclsyntax
import (
"fmt"
"github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/convert"
"github.com/apparentlymart/go-cty/cty/function"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/convert"
"github.com/zclconf/go-cty/cty/function"
"github.com/zclconf/go-zcl/zcl"
)

View File

@ -3,9 +3,9 @@ package zclsyntax
import (
"testing"
"github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function"
"github.com/apparentlymart/go-cty/cty/function/stdlib"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/function"
"github.com/zclconf/go-cty/cty/function/stdlib"
"github.com/zclconf/go-zcl/zcl"
)