Skip to content

Commit

Permalink
???
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-przybyl-wttech committed Feb 2, 2024
1 parent 934cd46 commit bdffe26
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PROJECT_NAME := Pulumi Asd Resource Provider

PACK := asd
PACKDIR := sdk
PROJECT := github.com/pulumi/pulumi-asd
PROJECT := github.com/dprzybyl/pulumi-asd-native
NODE_MODULE_NAME := @pulumi/asd
NUGET_PKG_NAME := Pulumi.Asd

Expand Down
2 changes: 1 addition & 1 deletion examples/go/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/pulumi/pulumi-asd/sdk/go/asd"
"github.com/dprzybyl/pulumi-asd-native/sdk/go/asd"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

Expand Down
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-asd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package main
import (
p "github.com/pulumi/pulumi-go-provider"

asd "github.com/pulumi/pulumi-asd/provider"
asd "github.com/dprzybyl/pulumi-asd-native/provider"
)

// Serve the provider against Pulumi's Provider protocol.
Expand Down
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pulumi/pulumi-asd/provider
module github.com/dprzybyl/pulumi-asd-native/provider

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion sdk/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pulumi/pulumi-asd/sdk
module github.com/dprzybyl/pulumi-asd-native/sdk

go 1.21

Expand Down
6 changes: 3 additions & 3 deletions tests/go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module github.com/pulumi/pulumi-asd/tests
module github.com/dprzybyl/pulumi-asd-native/tests

go 1.21

replace github.com/pulumi/pulumi-asd/provider => ../provider
replace github.com/dprzybyl/pulumi-asd-native/provider => ../provider

require (
github.com/blang/semver v3.5.1+incompatible
github.com/pulumi/pulumi-go-provider v0.11.1
github.com/pulumi/pulumi-go-provider/integration v0.10.0
github.com/pulumi/pulumi-asd/provider v0.0.0-00010101000000-000000000000
github.com/dprzybyl/pulumi-asd-native/provider v0.0.0-00010101000000-000000000000
github.com/pulumi/pulumi/sdk/v3 v3.79.0
github.com/stretchr/testify v1.8.4
)
Expand Down
2 changes: 1 addition & 1 deletion tests/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

asd "github.com/pulumi/pulumi-asd/provider"
asd "github.com/dprzybyl/pulumi-asd-native/provider"
)

func TestRandomCreate(t *testing.T) {
Expand Down

0 comments on commit bdffe26

Please sign in to comment.