websoft9/appmanage/api/utils/helper.py
2023-08-24 11:13:51 +08:00

7 lines
238 B
Python

class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]