2024-10-09 16:13:22 +00:00

8 lines
215 B
Python
Executable File

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