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" "fmt"
"reflect" "reflect"
"github.com/apparentlymart/go-cty/cty/convert" "github.com/zclconf/go-cty/cty/convert"
"github.com/apparentlymart/go-cty/cty/gocty" "github.com/zclconf/go-cty/cty/gocty"
"github.com/zclconf/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@ package json
import ( import (
"fmt" "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"
"github.com/zclconf/go-zcl/zcl/hclhil" "github.com/zclconf/go-zcl/zcl/hclhil"
) )

View File

@ -1,7 +1,7 @@
package zcl package zcl
import ( 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. // File is the top-level node that results from parsing a ZCL file.

View File

@ -3,7 +3,7 @@ package zcl
import ( import (
"fmt" "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 // A Traversal is a description of traversing through a value through a

View File

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

View File

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