Files
ezbookkeeping/pkg/uuid/uuid_generator.go
T
2020-12-23 00:24:45 +08:00

7 lines
138 B
Go

package uuid
// UuidGenerator is common uuid generator interface
type UuidGenerator interface {
GenerateUuid(uuidType UuidType) int64
}