type PgPool struct {
// optionally, a database connection pool can be set directly DbPool *sql.DB// or the following parameters can be used to initialize the pool DbHost string DbPort string DbUser string DbPass string DBName string DBUrlParams string// or set dsn DSN string
}