go-micro.dev/v5@v5.12.0/store/postgres/pgx/db.go (about)

     1  package pgx
     2  
     3  import "github.com/jackc/pgx/v4/pgxpool"
     4  
     5  type DB struct {
     6  	conn   *pgxpool.Pool
     7  	tables map[string]Queries
     8  }