mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
The NewRelic module relies on yfronto/newrelic, which no longer exists. yfronto deleted that directory quite awhile ago, and since then it has been vendored. But vendoring a missing repository creates problems when trying to update the vendored code. This PR brings the yfronto/newrelic code into the mainline. Signed-off-by: Chris Cummer <chriscummer@me.com>
12 lines
439 B
Go
12 lines
439 B
Go
package newrelic
|
|
|
|
// An Array is a type expected by the NewRelic API that differs from a comma-
|
|
// separated list. When passing GET params that expect an 'Array' type with
|
|
// one to many values, the expected format is "key=val1&key=val2" but an
|
|
// argument with zero to many values is of the form "key=val1,val2", and
|
|
// neither can be used in the other's place, so we have to differentiate
|
|
// somehow.
|
|
type Array struct {
|
|
arr []string
|
|
}
|