1
1
Fork 0
mirror of https://github.com/mcuadros/ascode synced 2024-05-09 17:16:16 +02:00

*: project org change

Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
This commit is contained in:
Máximo Cuadros 2019-08-01 20:43:59 +02:00
parent b5ae00d09b
commit e1c229b80c
10 changed files with 16 additions and 16 deletions

View File

@ -9,8 +9,8 @@ DOCUMENTATION_PATH ?= _documentation
DOCUMENTATION_RUNTIME_PATH ?= $(DOCUMENTATION_PATH)/runtime
RUNTIME_MODULES = \
github.com/ascode-dev/ascode/starlark/module/os \
github.com/ascode-dev/ascode/starlark/module/filepath \
github.com/mcuadros/ascode/starlark/module/os \
github.com/mcuadros/ascode/starlark/module/filepath \
github.com/qri-io/starlib/encoding/base64 \
github.com/qri-io/starlib/encoding/csv \
github.com/qri-io/starlib/encoding/json \

View File

@ -8,7 +8,7 @@ import (
"regexp"
"strings"
"github.com/ascode-dev/ascode/starlark/types"
"github.com/mcuadros/ascode/starlark/types"
"github.com/b5/outline/lib"
"github.com/hashicorp/terraform/configs/configschema"
"github.com/hashicorp/terraform/providers"

View File

@ -8,8 +8,8 @@ import (
"testing"
"text/template"
"github.com/ascode-dev/ascode/terraform"
"github.com/hashicorp/terraform/plugin"
"github.com/mcuadros/ascode/terraform"
"github.com/stretchr/testify/assert"
)

View File

@ -5,8 +5,8 @@ import (
"log"
"os"
"github.com/ascode-dev/ascode/starlark/runtime"
"github.com/ascode-dev/ascode/terraform"
"github.com/mcuadros/ascode/starlark/runtime"
"github.com/mcuadros/ascode/terraform"
)
func init() {

View File

@ -5,7 +5,7 @@ import (
"io/ioutil"
"os"
"github.com/ascode-dev/ascode/starlark/types"
"github.com/mcuadros/ascode/starlark/types"
"github.com/hashicorp/hcl2/hclwrite"
"go.starlark.net/starlark"
)

View File

@ -4,8 +4,8 @@ import (
"fmt"
"os"
"github.com/ascode-dev/ascode/cmd"
"github.com/jessevdk/go-flags"
"github.com/mcuadros/ascode/cmd"
)
var version string

View File

@ -3,10 +3,10 @@ package runtime
import (
"fmt"
"github.com/ascode-dev/ascode/starlark/module/filepath"
"github.com/ascode-dev/ascode/starlark/module/os"
"github.com/ascode-dev/ascode/starlark/types"
"github.com/ascode-dev/ascode/terraform"
"github.com/mcuadros/ascode/starlark/module/filepath"
"github.com/mcuadros/ascode/starlark/module/os"
"github.com/mcuadros/ascode/starlark/types"
"github.com/mcuadros/ascode/terraform"
"github.com/qri-io/starlib/encoding/base64"
"github.com/qri-io/starlib/encoding/csv"
"github.com/qri-io/starlib/encoding/json"

View File

@ -4,7 +4,7 @@ import (
"fmt"
"strings"
"github.com/ascode-dev/ascode/terraform"
"github.com/mcuadros/ascode/terraform"
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/plugin/discovery"

View File

@ -6,8 +6,8 @@ import (
"log"
"testing"
"github.com/ascode-dev/ascode/starlark/module/os"
"github.com/ascode-dev/ascode/terraform"
"github.com/mcuadros/ascode/starlark/module/os"
"github.com/mcuadros/ascode/terraform"
"go.starlark.net/resolve"
"go.starlark.net/starlark"
"go.starlark.net/starlarktest"

View File

@ -3,7 +3,7 @@ package types
import (
"fmt"
"github.com/ascode-dev/ascode/terraform"
"github.com/mcuadros/ascode/terraform"
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/plugin/discovery"
"go.starlark.net/starlark"