Skip to content

Commit 9539e17

Browse files
author
Mirko Brombin
authored
cleanup: rename package holder
1 parent 995510a commit 9539e17

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

cmd/client.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/distrobox/hrun/pkg/client"
4+
"github.com/containerpak/hrun/pkg/client"
55
)
66

77
func StartClient(command []string, socketPath string) {

cmd/server.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/distrobox/hrun/pkg/server"
4+
"github.com/containerpak/hrun/pkg/server"
55
)
66

77
func StartServer(allowedCmds []string, socketPath string) {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/distrobox/hrun
1+
module github.com/containerpak/hrun
22

33
go 1.21
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"path"
88

9-
"github.com/distrobox/hrun/cmd"
9+
"github.com/containerpak/hrun/cmd"
1010
)
1111

1212
func main() {

pkg/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"syscall"
1414

15-
"github.com/distrobox/hrun/pkg/structs"
15+
"github.com/containerpak/hrun/pkg/structs"
1616
"golang.org/x/term"
1717
)
1818

pkg/server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"syscall"
1616

1717
"github.com/creack/pty"
18-
"github.com/distrobox/hrun/pkg/structs"
18+
"github.com/containerpak/hrun/pkg/structs"
1919
)
2020

2121
func StartServer(allowedCmds []string, socketPath string) error {

0 commit comments

Comments
 (0)