webchat / common /singleton.py
hhz520's picture
Upload 170 files
61517de
raw
history blame contribute delete
No virus
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