diff --git a/bindings/go/binding_test.go b/bindings/go/binding_test.go index f1e8553c..e2076544 100644 --- a/bindings/go/binding_test.go +++ b/bindings/go/binding_test.go @@ -4,7 +4,7 @@ import ( "testing" tree_sitter "github.com/smacker/go-tree-sitter" - "github.com/tree-sitter/tree-sitter-kotlin" + tree_sitter_kotlin "github.com/fwcd/tree-sitter-kotlin/bindings/go" ) func TestCanLoadGrammar(t *testing.T) { diff --git a/bindings/go/go.mod b/bindings/go/go.mod deleted file mode 100644 index 3e8d35b8..00000000 --- a/bindings/go/go.mod +++ /dev/null @@ -1,5 +0,0 @@ -module github.com/tree-sitter/tree-sitter-kotlin - -go 1.22 - -require github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8 diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..c9b963c4 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/fwcd/tree-sitter-kotlin + +go 1.22 + +require github.com/smacker/go-tree-sitter v0.0.0-20240827094217-dd81d9e9be82