Files
chatgpt-on-wechat/common/singleton.py
2023-03-11 02:51:07 +08:00

10 lines
217 B
Python

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