FirstStart angepasst

This commit is contained in:
2024-11-25 15:17:20 +01:00
parent 304f9cabc5
commit 93efaabe6d
18 changed files with 1619 additions and 325 deletions

13
lib/Test.py Normal file
View File

@@ -0,0 +1,13 @@
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.