1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
// This sqlx example is a separate module to avoid adding sqlx dependency to the
// nrpgx go.mod file.
module github.com/newrelic/go-agent/v3/integrations/nrpgx/example/sqlx
go 1.13
require (
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jmoiron/sqlx v1.2.0
github.com/newrelic/go-agent/v3 v3.3.0
github.com/newrelic/go-agent/v3/integrations/nrpgx v0.0.0
)
replace github.com/newrelic/go-agent/v3 => ../../../../
replace github.com/newrelic/go-agent/v3/integrations/nrpgx => ../../
|