diff --git a/.gitignore b/.gitignore index b1074c8..8eca159 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -vldisk +linsk *.qcow2 \ No newline at end of file diff --git a/cmd/ls.go b/cmd/ls.go index b6046ab..dbb498b 100644 --- a/cmd/ls.go +++ b/cmd/ls.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/AlexSSD7/vldisk/vm" + "github.com/AlexSSD7/linsk/vm" "github.com/spf13/cobra" ) diff --git a/cmd/root.go b/cmd/root.go index 49d9b64..f88f0ce 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -9,7 +9,7 @@ import ( ) var rootCmd = &cobra.Command{ - Use: "vldisk", + Use: "linsk", // TODO: Fill this // Short: "", // Long: ``, diff --git a/cmd/run.go b/cmd/run.go index e581e8b..47723c5 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -5,7 +5,7 @@ import ( "fmt" "log/slog" - "github.com/AlexSSD7/vldisk/vm" + "github.com/AlexSSD7/linsk/vm" "github.com/spf13/cobra" ) diff --git a/cmd/utils.go b/cmd/utils.go index 0fe8996..8e5c0a8 100644 --- a/cmd/utils.go +++ b/cmd/utils.go @@ -10,7 +10,7 @@ import ( "log/slog" - "github.com/AlexSSD7/vldisk/vm" + "github.com/AlexSSD7/linsk/vm" "github.com/pkg/errors" ) diff --git a/go.mod b/go.mod index d0e6332..f44d833 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/AlexSSD7/vldisk +module github.com/AlexSSD7/linsk go 1.21 diff --git a/main.go b/main.go index 0f7773a..6f113e5 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/AlexSSD7/vldisk/cmd" + "github.com/AlexSSD7/linsk/cmd" ) func main() { diff --git a/vm/errors.go b/vm/errors.go index a4dcca1..826cbfb 100644 --- a/vm/errors.go +++ b/vm/errors.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/AlexSSD7/vldisk/utils" + "github.com/AlexSSD7/linsk/utils" "github.com/pkg/errors" ) diff --git a/vm/filemanager.go b/vm/filemanager.go index 8f23dca..1def9a7 100644 --- a/vm/filemanager.go +++ b/vm/filemanager.go @@ -10,7 +10,7 @@ import ( "sync" "syscall" - "github.com/AlexSSD7/vldisk/utils" + "github.com/AlexSSD7/linsk/utils" "github.com/alessio/shellescape" "github.com/pkg/errors" "go.uber.org/multierr"