2019-01-15 16:09:58 +00:00
|
|
|
package testing
|
|
|
|
|
2021-03-30 18:10:02 +00:00
|
|
|
import (
|
|
|
|
"github.com/influxdata/influxdb/v2/kit/platform"
|
|
|
|
)
|
2019-01-15 16:09:58 +00:00
|
|
|
|
|
|
|
// IDPtr returns a pointer to an influxdb.ID.
|
2021-03-30 18:10:02 +00:00
|
|
|
func IDPtr(id platform.ID) *platform.ID { return &id }
|