hashiruAI / src /singleton.py
helloparthshah's picture
QOL changes
576227b
raw
history blame
182 Bytes
def singleton(cls):
instances = {}
def getinstance():
if cls not in instances:
instances[cls] = cls()
return instances[cls]
return getinstance