Skip to content

Commit

Permalink
fix: repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
b- committed Dec 16, 2023
1 parent d9d1eba commit 37f816c
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions cmd/clone/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package clone
import (
"fmt"

"github.com/b-/gomox/cmd/taskstatus"
"github.com/b-/gomox/tasks"
"github.com/b-/gomox/util"
"github.com/perchnet/gomox/cmd/taskstatus"

Check notice on line 6 in cmd/clone/clone.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/perchnet/gomox/tasks"

Check notice on line 7 in cmd/clone/clone.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/perchnet/gomox/util"

Check notice on line 8 in cmd/clone/clone.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 9 in cmd/clone/clone.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 10 in cmd/clone/clone.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 11 in cmd/clone/clone.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
2 changes: 1 addition & 1 deletion cmd/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

"github.com/b-/gomox/util"
"github.com/perchnet/gomox/util"

Check notice on line 8 in cmd/config/config.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/jedib0t/go-pretty/v6/table"

Check notice on line 9 in cmd/config/config.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 10 in cmd/config/config.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 11 in cmd/config/config.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
2 changes: 1 addition & 1 deletion cmd/destroy/destroy.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package destroy
import (
"fmt"

"github.com/b-/gomox/util"
"github.com/perchnet/gomox/util"

Check notice on line 6 in cmd/destroy/destroy.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 7 in cmd/destroy/destroy.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 8 in cmd/destroy/destroy.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 9 in cmd/destroy/destroy.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
2 changes: 1 addition & 1 deletion cmd/list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package list
import (
"fmt"

"github.com/b-/gomox/util"
"github.com/perchnet/gomox/util"

Check notice on line 6 in cmd/list/list.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/jedib0t/go-pretty/v6/table"

Check notice on line 7 in cmd/list/list.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 8 in cmd/list/list.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 9 in cmd/list/list.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
2 changes: 1 addition & 1 deletion cmd/pveVersion/pveVersion.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package pveVersion

import (
"github.com/b-/gomox/util"
"github.com/perchnet/gomox/util"

Check notice on line 4 in cmd/pveVersion/pveVersion.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 5 in cmd/pveVersion/pveVersion.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 6 in cmd/pveVersion/pveVersion.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 7 in cmd/pveVersion/pveVersion.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
18 changes: 9 additions & 9 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package cmd

import (
"github.com/b-/gomox/cmd/clone"
"github.com/b-/gomox/cmd/config"
"github.com/b-/gomox/cmd/destroy"
"github.com/b-/gomox/cmd/list"
"github.com/b-/gomox/cmd/pveVersion"
"github.com/b-/gomox/cmd/set"
"github.com/b-/gomox/cmd/start"
"github.com/b-/gomox/cmd/stop"
"github.com/b-/gomox/cmd/taskstatus"
"github.com/perchnet/gomox/cmd/clone"
"github.com/perchnet/gomox/cmd/config"
"github.com/perchnet/gomox/cmd/destroy"
"github.com/perchnet/gomox/cmd/list"
"github.com/perchnet/gomox/cmd/pveVersion"
"github.com/perchnet/gomox/cmd/set"
"github.com/perchnet/gomox/cmd/start"
"github.com/perchnet/gomox/cmd/stop"
"github.com/perchnet/gomox/cmd/taskstatus"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/set/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"strconv"
"strings"

"github.com/b-/gomox/cmd/taskstatus"
"github.com/b-/gomox/util"
"github.com/perchnet/gomox/cmd/taskstatus"

Check notice on line 7 in cmd/set/set.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/perchnet/gomox/util"

Check notice on line 8 in cmd/set/set.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 9 in cmd/set/set.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 10 in cmd/set/set.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/start/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package start
import (
"fmt"

"github.com/b-/gomox/util"
"github.com/perchnet/gomox/util"

Check notice on line 6 in cmd/start/start.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 7 in cmd/start/start.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 8 in cmd/start/start.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 9 in cmd/start/start.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
2 changes: 1 addition & 1 deletion cmd/stop/stop.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stop
import (
"fmt"

"github.com/b-/gomox/util"
"github.com/perchnet/gomox/util"

Check notice on line 6 in cmd/stop/stop.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 7 in cmd/stop/stop.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 8 in cmd/stop/stop.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 9 in cmd/stop/stop.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
Expand Down
4 changes: 2 additions & 2 deletions cmd/taskstatus/taskstatus.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package taskstatus
import (
"fmt"

"github.com/b-/gomox/tasks"
"github.com/b-/gomox/util"
"github.com/perchnet/gomox/tasks"

Check notice on line 6 in cmd/taskstatus/taskstatus.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/perchnet/gomox/util"

Check notice on line 7 in cmd/taskstatus/taskstatus.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 8 in cmd/taskstatus/taskstatus.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 9 in cmd/taskstatus/taskstatus.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/urfave/cli/v2"

Check notice on line 10 in cmd/taskstatus/taskstatus.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
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 github.com/b-/gomox
module github.com/perchnet/gomox

go 1.21.3

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 (
"io"
"os"

"github.com/b-/gomox/cmd"
"github.com/perchnet/gomox/cmd"
"github.com/sirupsen/logrus"
easy "github.com/t-tomalak/logrus-easy-formatter"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion util/vmdestroyer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/b-/gomox/tasks"
"github.com/perchnet/gomox/tasks"

Check notice on line 7 in util/vmdestroyer.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/luthermonson/go-proxmox"

Check notice on line 8 in util/vmdestroyer.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
"github.com/sirupsen/logrus"

Check notice on line 9 in util/vmdestroyer.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Unsorted imports

Imports are not sorted
)
Expand Down

0 comments on commit 37f816c

Please sign in to comment.