Switch to hosting on source.gleipnir.technology
All checks were successful
/ test (push) Successful in 3s

This commit is contained in:
Eli Ribble 2026-05-14 16:26:47 +00:00
parent 30cc7321c5
commit 34e5dcbb17
No known key found for this signature in database
172 changed files with 493 additions and 490 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/Gleipnir-Technology/jet
$ go get -u source.gleipnir.technology/Gleipnir/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/Gleipnir-Technology/jet/cmd/jet@latest
go install source.gleipnir.technology/Gleipnir/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/Gleipnir-Technology/jet/postgres" // Dot import is used so that Go code resemble as much as native SQL. It is not mandatory.
. "source.gleipnir.technology/Gleipnir/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: