Files
play-with-docker/id/xid.go
2017-09-14 10:20:20 -03:00

11 lines
138 B
Go

package id
import "github.com/rs/xid"
type XIDGenerator struct {
}
func (x XIDGenerator) NewId() string {
return xid.New().String()
}