chatgpt-on-wechat / common /singleton.py
oliver2023's picture
Duplicate from linhj07/chatgpt-on-wechat
0dc9888
raw
history blame contribute delete
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