diff --git a/lib/Test.py b/lib/Test.py deleted file mode 100644 index 51017f9..0000000 --- a/lib/Test.py +++ /dev/null @@ -1,13 +0,0 @@ -import toml - - -class Singleton(object): - def __new__(cls): - if not hasattr(cls, "__instance"): - cls.__instance = super().__new__(cls) - return cls.__instance - - class DbManager(Singleton): - def __init__(self, dbconf): - toml. -