package postgresql import ( "github.com/jackc/pgx/v5/pgxpool" ) type Database struct { db *pgxpool.Conn } func New() Database { }