Skip to content

Commit fb11169

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

14 files changed

+16
-16
lines changed

Diff for: cmd/cmd.go

+2-2
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 {

Diff for: go.mod

+1-1
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

Diff for: main.go

+1-1
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() {

Diff for: pkg/libsql/output_test.go

+1-1
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) {

Diff for: shell/databaseRootCommand.go

+1-1
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{}

Diff for: shell/history.go

+1-1
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

Diff for: shell/history_test.go

+1-1
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"

Diff for: shell/shell.go

+1-1
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

Diff for: test/db_root_command_shell_test.go

+1-1
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 {

Diff for: test/root_command_exec_test.go

+1-1
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 {

Diff for: test/root_command_flags_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
qt "github.com/frankban/quicktest"
77

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

1212
func TestRootCommandFlags_WhenAllFlagsAreProvided_ExpectSQLStatementsExecutedWithoutError(t *testing.T) {

Diff for: test/root_command_shell_test.go

+1-1
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 RootCommandShellSuite struct {

Diff for: test/utils/db_test_context.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
qt "github.com/frankban/quicktest"
1010

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

1414
type DbTestContext struct {

Diff for: test/utils/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"testing"
77

8-
"github.com/chiselstrike/libsql-shell/pkg/libsql"
8+
"github.com/libsql/libsql-shell-go/pkg/libsql"
99
"github.com/spf13/cobra"
1010
)
1111

0 commit comments

Comments
 (0)