Skip to content

Commit 8a48342

Browse files
authored
Merge pull request #5 from sbrueseke/preparations_for_pr
Preparations for pr
2 parents 5244813 + 2587ea0 commit 8a48342

File tree

78 files changed

+77
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+77
-79
lines changed

examples/AddHost.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"log"
2626

27-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
27+
"github.com/apache/cloudstack-go/v2/cloudstack"
2828
)
2929

3030
func AddHost() {

examples/CreateDeleteDomain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"log"
2626

27-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
27+
"github.com/apache/cloudstack-go/v2/cloudstack"
2828
)
2929

3030
func CreateDomain() {

examples/HostOperations.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"encoding/json"
2424
"log"
2525

26-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
26+
"github.com/apache/cloudstack-go/v2/cloudstack"
2727
)
2828

2929
func PerformHostOperations() {

examples/mock_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ package main
2222
import (
2323
"testing"
2424

25+
"github.com/apache/cloudstack-go/v2/cloudstack"
2526
"github.com/golang/mock/gomock"
26-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
2727
)
2828

2929
func Test_Mock(t *testing.T) {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sbrueseke/cloudstack-go/v2
1+
module github.com/apache/cloudstack-go/v2
22

33
go 1.17
44

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/apache/cloudstack-go/v2 v2.15.0 h1:oojn1qx0+wBwrFSSmA2rL8XjWd4BXqwYo0RVCrAXoHk=
2-
github.com/apache/cloudstack-go/v2 v2.15.0/go.mod h1:Mc+tXpujtslBuZFk5atoGT2LanVxOrXS2GGgidAoz1A=
31
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
42
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
53
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=

test/APIDiscoveryService_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package test
2222
import (
2323
"testing"
2424

25-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
25+
"github.com/apache/cloudstack-go/v2/cloudstack"
2626
)
2727

2828
func TestAPIDiscoveryService(t *testing.T) {

test/AccountService_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package test
2222
import (
2323
"testing"
2424

25-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
25+
"github.com/apache/cloudstack-go/v2/cloudstack"
2626
)
2727

2828
func TestAccountService(t *testing.T) {

test/AddressService_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package test
2222
import (
2323
"testing"
2424

25-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
25+
"github.com/apache/cloudstack-go/v2/cloudstack"
2626
)
2727

2828
func TestAddressService(t *testing.T) {

test/AffinityGroupService_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package test
2222
import (
2323
"testing"
2424

25-
"github.com/sbrueseke/cloudstack-go/v2/cloudstack"
25+
"github.com/apache/cloudstack-go/v2/cloudstack"
2626
)
2727

2828
func TestAffinityGroupService(t *testing.T) {

0 commit comments

Comments
 (0)