From cecee43ffea8a7f81ba58e62cefe0f654a07e53f Mon Sep 17 00:00:00 2001 From: go-jet Date: Sat, 20 Jul 2019 11:33:14 +0200 Subject: [PATCH] Update readme. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3f033c5..8aa78d9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Go Report Card](https://goreportcard.com/badge/github.com/go-jet/jet)](https://goreportcard.com/report/github.com/go-jet/jet) [![Documentation](https://godoc.org/github.com/go-jet/jet?status.svg)](http://godoc.org/github.com/go-jet/jet) -[![codecov](https://codecov.io/gh/go-jet/jet/branch/coverage/graph/badge.svg)](https://codecov.io/gh/go-jet/jet) +[![codecov](https://codecov.io/gh/go-jet/jet/branch/develop/graph/badge.svg)](https://codecov.io/gh/go-jet/jet) [![CircleCI](https://circleci.com/gh/go-jet/jet/tree/develop.svg?style=svg&circle-token=97f255c6a4a3ab6590ea2e9195eb3ebf9f97b4a7)](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 @@ -261,10 +261,11 @@ Let's say this is our desired structure: ```go var dest []struct { model.Actor + Films []struct { model.Film - Language model.Language - Categories []model.Category + Language model.Language + Categories []model.Category } } ```