vldisk => linsk

This commit is contained in:
AlexSSD7 2023-08-26 09:16:52 +01:00
commit dc67d021e1
9 changed files with 9 additions and 9 deletions

2
.gitignore vendored
View file

@ -1,2 +1,2 @@
vldisk linsk
*.qcow2 *.qcow2

View file

@ -8,7 +8,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/AlexSSD7/vldisk/vm" "github.com/AlexSSD7/linsk/vm"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View file

@ -9,7 +9,7 @@ import (
) )
var rootCmd = &cobra.Command{ var rootCmd = &cobra.Command{
Use: "vldisk", Use: "linsk",
// TODO: Fill this // TODO: Fill this
// Short: "", // Short: "",
// Long: ``, // Long: ``,

View file

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"log/slog" "log/slog"
"github.com/AlexSSD7/vldisk/vm" "github.com/AlexSSD7/linsk/vm"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View file

@ -10,7 +10,7 @@ import (
"log/slog" "log/slog"
"github.com/AlexSSD7/vldisk/vm" "github.com/AlexSSD7/linsk/vm"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/AlexSSD7/vldisk module github.com/AlexSSD7/linsk
go 1.21 go 1.21

View file

@ -1,7 +1,7 @@
package main package main
import ( import (
"github.com/AlexSSD7/vldisk/cmd" "github.com/AlexSSD7/linsk/cmd"
) )
func main() { func main() {

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/AlexSSD7/vldisk/utils" "github.com/AlexSSD7/linsk/utils"
"github.com/pkg/errors" "github.com/pkg/errors"
) )

View file

@ -10,7 +10,7 @@ import (
"sync" "sync"
"syscall" "syscall"
"github.com/AlexSSD7/vldisk/utils" "github.com/AlexSSD7/linsk/utils"
"github.com/alessio/shellescape" "github.com/alessio/shellescape"
"github.com/pkg/errors" "github.com/pkg/errors"
"go.uber.org/multierr" "go.uber.org/multierr"