mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
7 lines
138 B
Go
7 lines
138 B
Go
package uuid
|
|
|
|
// UuidGenerator is common uuid generator interface
|
|
type UuidGenerator interface {
|
|
GenerateUuid(uuidType UuidType) int64
|
|
}
|