chatgpt-on-wechat / common /singleton.py
linhj07's picture
Upload 139 files
ba12b59
raw
history blame
217 Bytes
def singleton(cls):
instances = {}
def get_instance(*args, **kwargs):
if cls not in instances:
instances[cls] = cls(*args, **kwargs)
return instances[cls]
return get_instance