docker / id /xid.go
Xlnk's picture
Upload 176 files
7b9f3e3 verified
package id
import "github.com/rs/xid"
type XIDGenerator struct {
}
func (x XIDGenerator) NewId() string {
return xid.New().String()
}