Bulk replace project references in go code

This commit is contained in:
Eli Ribble 2026-05-09 01:43:14 +00:00
parent 814ebddfa2
commit 4474319e73
No known key found for this signature in database
170 changed files with 488 additions and 488 deletions

6
doc.go
View file

@ -7,12 +7,12 @@ Jet currently supports PostgreSQL, MySQL, MariaDB and SQLite. Future releases wi
Use the command bellow to add jet as a dependency into go.mod project:
$ go get -u github.com/go-jet/jet/v2
$ go get -u github.com/Gleipnir-Technology/jet
Jet generator can be installed in one of the following ways:
1. (Go1.16+) Install jet generator using go install:
go install github.com/go-jet/jet/v2/cmd/jet@latest
go install github.com/Gleipnir-Technology/jet/cmd/jet@latest
2. Install jet generator to GOPATH/bin folder:
cd $GOPATH/src/ && GO111MODULE=off go get -u github.com/go-jet/jet/cmd/jet
@ -38,7 +38,7 @@ Before we can write SQL queries in Go, we need to import generated SQL builder a
To write postgres SQL queries we import:
. "github.com/go-jet/jet/v2/postgres" // Dot import is used so that Go code resemble as much as native SQL. It is not mandatory.
. "github.com/Gleipnir-Technology/jet/postgres" // Dot import is used so that Go code resemble as much as native SQL. It is not mandatory.
Then we can write the SQL query: