Skip to content

Commit

Permalink
Add go.mod file and update repository link
Browse files Browse the repository at this point in the history
- The Go module system (go.mod) was introduced in Go 1.11 and is the
  official dependency management solution for Go.
  • Loading branch information
MuhammadTahaNaveed committed Jun 25, 2024
1 parent 54cdcd2 commit c231380
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
go.sum
2 changes: 1 addition & 1 deletion doc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package ag_test
import (
"database/sql"

"github.com/bitnine-oss/agensgraph-golang"
"github.com/BitnineGlobal/agensgraph-golang"
)

var db *sql.DB
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

"github.com/bitnine-oss/agensgraph-golang"
"github.com/BitnineGlobal/agensgraph-golang"
)

type knows struct {
Expand Down
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/BitnineGlobal/agensgraph-golang

go 1.22.4

require github.com/lib/pq v1.10.9 // indirect

0 comments on commit c231380

Please sign in to comment.