Files
ezbookkeeping/pkg/uuid/uuid_generator.go
T

8 lines
193 B
Go

package uuid
// UuidGenerator is common uuid generator interface
type UuidGenerator interface {
GenerateUuid(uuidType UuidType) int64
GenerateUuids(uuidType UuidType, count uint8) []int64
}