package genID import "github.com/rs/xid" func GenerateXID() string { id := xid.New() return id.String() }