From 90d22fb483f81f749cf24e5a6700402615658603 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Thu, 26 Sep 2019 21:08:20 -0500 Subject: [PATCH] Add basic README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..6848acc5 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +[![](https://godoc.org/github.com/jackc/pgtype?status.svg)](https://godoc.org/github.com/jackc/pgtype) + +# pgtype + +pgtype implements Go types for over 70 PostgreSQL types. pgtype is the type system underlying the +https://github.com/jackc/pgx PostgreSQL driver. These types support the binary format for enhanced performance with pgx. +They also support the database/sql `Scan` and `Value` interfaces and can be used with https://github.com/lib/pq.