mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-30 22:33:49 +02:00
9 lines
123 B
Go
9 lines
123 B
Go
![]() |
package pgx
|
||
|
|
||
|
import "github.com/jackc/pgx/v4/pgxpool"
|
||
|
|
||
|
type DB struct {
|
||
|
conn *pgxpool.Pool
|
||
|
tables map[string]Queries
|
||
|
}
|