Skip to content

Commit 4025857

Browse files
committed
change repository name: h24w-17 -> isuc
1 parent e688be8 commit 4025857

File tree

17 files changed

+25
-25
lines changed

17 files changed

+25
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ go run cli/main.go extract --out extracted.sql /path/to/your/codebase/dir
2121

2222
```go
2323
import (
24-
dynamic_extractor "github.com/traP-jp/h24w-17/extractor/dynamic"
24+
dynamic_extractor "github.com/traP-jp/isuc/extractor/dynamic"
2525
)
2626
```
2727

analyzer/analyzer.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package analyzer
33
import (
44
"fmt"
55

6-
"github.com/traP-jp/h24w-17/domains"
7-
"github.com/traP-jp/h24w-17/normalizer"
8-
"github.com/traP-jp/h24w-17/sql_parser"
6+
"github.com/traP-jp/isuc/domains"
7+
"github.com/traP-jp/isuc/normalizer"
8+
"github.com/traP-jp/isuc/sql_parser"
99
)
1010

1111
func AnalyzeQueries(queries []string, schemas []domains.TableSchema) (domains.CachePlan, error) {

analyzer/analyzer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55

66
"github.com/stretchr/testify/assert"
7-
"github.com/traP-jp/h24w-17/domains"
7+
"github.com/traP-jp/isuc/domains"
88
)
99

1010
func TestAnalyzeQueries(t *testing.T) {

analyzer/query_analyzer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package analyzer
33
import (
44
"fmt"
55

6-
"github.com/traP-jp/h24w-17/domains"
7-
"github.com/traP-jp/h24w-17/sql_parser"
6+
"github.com/traP-jp/isuc/domains"
7+
"github.com/traP-jp/isuc/sql_parser"
88
)
99

1010
func newQueryAnalyzer(schemas []domains.TableSchema) *queryAnalyzer {

cli/analyzer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strings"
99

1010
"github.com/spf13/cobra"
11-
"github.com/traP-jp/h24w-17/analyzer"
12-
"github.com/traP-jp/h24w-17/domains"
11+
"github.com/traP-jp/isuc/analyzer"
12+
"github.com/traP-jp/isuc/domains"
1313
)
1414

1515
var analyzeCmd = &cobra.Command{

cli/extractor.go

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

77
"github.com/spf13/cobra"
8-
static_extractor "github.com/traP-jp/h24w-17/extractor/static"
8+
static_extractor "github.com/traP-jp/isuc/extractor/static"
99
)
1010

1111
var extractCmd = &cobra.Command{

cli/generator.go

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

77
"github.com/spf13/cobra"
8-
h24w17 "github.com/traP-jp/h24w-17"
8+
h24w17 "github.com/traP-jp/isuc"
99
)
1010

1111
var generateCmd = &cobra.Command{

extractor/dynamic/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/go-sql-driver/mysql"
11-
"github.com/traP-jp/h24w-17/normalizer"
11+
"github.com/traP-jp/isuc/normalizer"
1212
)
1313

1414
func init() {

extractor/dynamic/driver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55

66
"github.com/stretchr/testify/assert"
7-
"github.com/traP-jp/h24w-17/testutil"
7+
"github.com/traP-jp/isuc/testutil"
88
)
99

1010
func TestMain(m *testing.M) {

extractor/static/extractor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"regexp"
1010
"strings"
1111

12-
"github.com/traP-jp/h24w-17/normalizer"
12+
"github.com/traP-jp/isuc/normalizer"
1313
)
1414

1515
var sqlPattern = regexp.MustCompile(`^(SELECT|INSERT|UPDATE|DELETE)\b`)

0 commit comments

Comments
 (0)