websoft9/appmanage/api/utils/helper.py

7 lines
238 B
Python
Raw Normal View History

2023-08-23 17:57:23 +08:00
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]