Skip to content

Commit

Permalink
fix module path (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
svenwltr authored Aug 12, 2023
1 parent 09c501d commit de113ad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cmd/bridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/discover.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module gitlab.com/svenwltr/localh0rst/apps/devilctl
module github.com/svenwltr/devilctl

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit de113ad

Please sign in to comment.