Skip to content

Commit fb11169

Browse files
Luis Silvaluisfvieirasilva
authored andcommitted
fix: rename module
1 parent 398fa81 commit fb11169

14 files changed

+16
-16
lines changed

cmd/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
_ "github.com/mattn/go-sqlite3"
88
"github.com/spf13/cobra"
99

10-
"github.com/chiselstrike/libsql-shell/pkg/libsql"
11-
"github.com/chiselstrike/libsql-shell/shell"
10+
"github.com/libsql/libsql-shell-go/pkg/libsql"
11+
"github.com/libsql/libsql-shell-go/shell"
1212
)
1313

1414
type RootArgs struct {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/chiselstrike/libsql-shell
1+
module github.com/libsql/libsql-shell-go
22

33
go 1.20
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/chiselstrike/libsql-shell/cmd"
4+
"github.com/libsql/libsql-shell-go/cmd"
55
)
66

77
func main() {

pkg/libsql/output_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package libsql_test
33
import (
44
"testing"
55

6-
"github.com/chiselstrike/libsql-shell/test/utils"
76
qt "github.com/frankban/quicktest"
7+
"github.com/libsql/libsql-shell-go/test/utils"
88
)
99

1010
func TestGetTableOutput_GivenHeaderWithoutData_ExpectTableHasJustHeader(t *testing.T) {

shell/databaseRootCommand.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
_ "github.com/mattn/go-sqlite3"
88
"github.com/spf13/cobra"
99

10-
"github.com/chiselstrike/libsql-shell/pkg/libsql"
10+
"github.com/libsql/libsql-shell-go/pkg/libsql"
1111
)
1212

1313
type dbCtx struct{}

shell/history.go

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

9-
"github.com/chiselstrike/libsql-shell/pkg/libsql"
9+
"github.com/libsql/libsql-shell-go/pkg/libsql"
1010
)
1111

1212
type HistoryMode int64

shell/history_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/chiselstrike/libsql-shell/shell"
98
qt "github.com/frankban/quicktest"
9+
"github.com/libsql/libsql-shell-go/shell"
1010
)
1111

1212
const historyName = "libsql"

shell/shell.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"regexp"
77
"strings"
88

9-
"github.com/chiselstrike/libsql-shell/pkg/libsql"
109
"github.com/chzyer/readline"
1110
"github.com/fatih/color"
11+
"github.com/libsql/libsql-shell-go/pkg/libsql"
1212
"github.com/spf13/cobra"
1313
)
1414

test/db_root_command_shell_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
qt "github.com/frankban/quicktest"
77
"github.com/stretchr/testify/suite"
88

9-
"github.com/chiselstrike/libsql-shell/test/utils"
9+
"github.com/libsql/libsql-shell-go/test/utils"
1010
)
1111

1212
type DBRootCommandShellSuite struct {

test/root_command_exec_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
qt "github.com/frankban/quicktest"
88
"github.com/stretchr/testify/suite"
99

10-
"github.com/chiselstrike/libsql-shell/test/utils"
10+
"github.com/libsql/libsql-shell-go/test/utils"
1111
)
1212

1313
type RootCommandExecSuite struct {

0 commit comments

Comments
 (0)