1
0
mirror of synced 2025-12-16 18:18:10 +08:00
Files
SnowFlake-IdGenerator/Python/source/SnowFlake.py
2022-08-07 16:33:59 +08:00

12 lines
180 B
Python

#!/usr/bin/python
# coding=UTF-8
# 组件编号生成器
class SnowFlake(object):
def __init__(self, options):
self.Options = options
def NextId(self) -> int:
return 0