Update readme.
This commit is contained in:
parent
e74e090b0a
commit
cecee43ffe
1 changed files with 4 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://goreportcard.com/report/github.com/go-jet/jet)
|
[](https://goreportcard.com/report/github.com/go-jet/jet)
|
||||||
[](http://godoc.org/github.com/go-jet/jet)
|
[](http://godoc.org/github.com/go-jet/jet)
|
||||||
[](https://codecov.io/gh/go-jet/jet)
|
[](https://codecov.io/gh/go-jet/jet)
|
||||||
[](https://circleci.com/gh/go-jet/jet/tree/develop)
|
[](https://circleci.com/gh/go-jet/jet/tree/develop)
|
||||||
|
|
||||||
Jet is a framework for writing type-safe SQL queries for PostgreSQL in Go, with ability to easily
|
Jet is a framework for writing type-safe SQL queries for PostgreSQL in Go, with ability to easily
|
||||||
|
|
@ -261,10 +261,11 @@ Let's say this is our desired structure:
|
||||||
```go
|
```go
|
||||||
var dest []struct {
|
var dest []struct {
|
||||||
model.Actor
|
model.Actor
|
||||||
|
|
||||||
Films []struct {
|
Films []struct {
|
||||||
model.Film
|
model.Film
|
||||||
Language model.Language
|
Language model.Language
|
||||||
Categories []model.Category
|
Categories []model.Category
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue