influxdb/uuid/v4.go

12 lines
220 B
Go
Raw Normal View History

package uuid
import uuid "github.com/satori/go.uuid"
2016-10-20 23:01:14 +00:00
// V4 implements chronograf.ID
2016-10-11 00:34:05 +00:00
type V4 struct{}
// Generate creates a UUID v4 string
func (i *V4) Generate() (string, error) {
2016-10-11 00:34:05 +00:00
return uuid.NewV4().String(), nil
}