vend with

This commit is contained in:
bel
2026-06-27 16:44:47 -06:00
parent 48c3474c15
commit a9f78655c3
20 changed files with 1068 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
package with
import (
"context"
"database/sql"
_ "github.com/lib/pq"
)
func PSQL(ctx context.Context, conn string, foo func(*sql.DB) error) error {
return _sql(ctx, "postgres", conn, foo)
}