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