1package uuid
2
3type Generator interface {
4	Generate() (uuid string, err error)
5}
6