diff --git a/cmd/bridge.go b/cmd/bridge.go index 3c8c4a8..cd7659d 100644 --- a/cmd/bridge.go +++ b/cmd/bridge.go @@ -10,8 +10,8 @@ import ( "github.com/sirupsen/logrus" "github.com/spf13/cobra" - "gitlab.com/svenwltr/localh0rst/apps/devilctl/pkg/dal/homie" - "gitlab.com/svenwltr/localh0rst/apps/devilctl/pkg/dal/raumfeld" + "github.com/svenwltr/devilctl/pkg/dal/homie" + "github.com/svenwltr/devilctl/pkg/dal/raumfeld" "golang.org/x/sync/errgroup" ) diff --git a/cmd/discover.go b/cmd/discover.go index 295057b..07722e6 100644 --- a/cmd/discover.go +++ b/cmd/discover.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "gitlab.com/svenwltr/localh0rst/apps/devilctl/pkg/dal/raumfeld" + "github.com/svenwltr/devilctl/pkg/dal/raumfeld" "golang.org/x/sync/errgroup" ) diff --git a/go.mod b/go.mod index 5764ca4..8dfc138 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.com/svenwltr/localh0rst/apps/devilctl +module github.com/svenwltr/devilctl go 1.20 diff --git a/main.go b/main.go index e891a63..082adce 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ import ( "github.com/rebuy-de/rebuy-go-sdk/v5/pkg/cmdutil" "github.com/sirupsen/logrus" - "gitlab.com/svenwltr/localh0rst/apps/devilctl/cmd" + "github.com/svenwltr/devilctl/cmd" ) func main() {