Skip to content

Commit e55ce2d

Browse files
committed
chore: update module name to follow github username
1 parent 31b5b13 commit e55ce2d

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

cmd/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cmd
22

33
import (
4-
"github.com/DandyDev/ploy/deployments"
4+
"github.com/DonDebonair/ploy/deployments"
55
"github.com/spf13/cobra"
66
)
77

cmd/engines.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cmd
22

33
import (
44
"fmt"
5-
"github.com/DandyDev/ploy/engine"
5+
"github.com/DonDebonair/ploy/engine"
66

77
"github.com/spf13/cobra"
88
)

cmd/verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cmd
22

33
import (
4-
"github.com/DandyDev/ploy/deployments"
4+
"github.com/DonDebonair/ploy/deployments"
55

66
"github.com/spf13/cobra"
77
)

deployments/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package deployments
22

33
import (
4-
"github.com/DandyDev/ploy/engine"
4+
"github.com/DonDebonair/ploy/engine"
55
"github.com/mitchellh/mapstructure"
66
"gopkg.in/yaml.v3"
77
"os"

deployments/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package deployments
22

33
import (
44
"fmt"
5-
"github.com/DandyDev/ploy/engine"
5+
"github.com/DonDebonair/ploy/engine"
66
"github.com/hashicorp/go-multierror"
77
"github.com/spf13/cobra"
88
"os"

deployments/verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package deployments
22

33
import (
44
"fmt"
5-
"github.com/DandyDev/ploy/engine"
5+
"github.com/DonDebonair/ploy/engine"
66
"github.com/hashicorp/go-multierror"
77
"github.com/spf13/cobra"
88
"sync"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/DandyDev/ploy
1+
module github.com/DonDebonair/ploy
22

33
go 1.18
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/DandyDev/ploy/cmd"
3+
import "github.com/DonDebonair/ploy/cmd"
44

55
func main() {
66
cmd.Execute()

0 commit comments

Comments
 (0)