feat(serial):完成冰雹ID生成算法功能支持。

This commit is contained in:
徐涛
2023-07-14 08:48:17 +08:00
parent 955d3a96f2
commit b004e952c4
3 changed files with 81 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
package hail
type HailAlgorithmNotInitializedError struct{}
func (e *HailAlgorithmNotInitializedError) Error() string {
return "冰雹ID生成算法尚未初始化"
}