influxdb/uuid/v4.go

10 lines
152 B
Go
Raw Normal View History

package uuid
import uuid "github.com/satori/go.uuid"
2016-10-11 00:34:05 +00:00
type V4 struct{}
func (i *V4) Generate() (string, error) {
2016-10-11 00:34:05 +00:00
return uuid.NewV4().String(), nil
}