From 58b05f567c01eafb14218f659a16a5384ffe5dfa Mon Sep 17 00:00:00 2001
From: Jack Christensen <jack@jackchristensen.com>
Date: Sat, 25 Jan 2025 08:59:52 -0600
Subject: [PATCH] Add https://github.com/nikolayk812/pgx-outbox to README.md

fixes https://github.com/jackc/pgx/issues/2239
---
 README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/README.md b/README.md
index d84434d8..bbd2b45c 100644
--- a/README.md
+++ b/README.md
@@ -176,3 +176,7 @@ Code first migration library for native pgx (no database/sql abstraction).
 ### [github.com/amirsalarsafaei/sqlc-pgx-monitoring](https://github.com/amirsalarsafaei/sqlc-pgx-monitoring)
 
 A database monitoring/metrics library for pgx and sqlc. Trace, log and monitor your sqlc query performance using OpenTelemetry.
+
+### [https://github.com/nikolayk812/pgx-outbox](https://github.com/nikolayk812/pgx-outbox)
+
+Simple Golang implementation for transactional outbox pattern for PostgreSQL using jackc/pgx driver.