add uuid generator

This commit is contained in:
MaysWind
2020-10-17 17:41:48 +08:00
parent b4b58697c5
commit 957d0a1264
5 changed files with 268 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package uuid
type UuidGenerator interface {
GenerateUuid(uuidType UuidType) int64
}