From 681a6db78921f70b7abb91e6faa0f2f2a9522dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Thomas?= Date: Mon, 10 Jun 2024 10:44:19 +0200 Subject: [PATCH] feat: add documentation about the db package in the README --- postgresql/goose/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/postgresql/goose/README.md b/postgresql/goose/README.md index 60f4e6da..c2701272 100644 --- a/postgresql/goose/README.md +++ b/postgresql/goose/README.md @@ -23,6 +23,7 @@ func init() { } func upMigration(ctx context.Context, conn *pgx.Conn) error { + // db is the package containing the sqlc querier querier := db.New(conn) ... }