summaryrefslogtreecommitdiff
path: root/src/home/database/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/home/database/__init__.py')
-rw-r--r--src/home/database/__init__.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/home/database/__init__.py b/src/home/database/__init__.py
deleted file mode 100644
index b50cbce..0000000
--- a/src/home/database/__init__.py
+++ /dev/null
@@ -1,29 +0,0 @@
-import importlib
-
-__all__ = [
- 'get_mysql',
- 'mysql_now',
- 'get_clickhouse',
- 'SimpleState',
-
- 'SensorsDatabase',
- 'InverterDatabase',
- 'BotsDatabase'
-]
-
-
-def __getattr__(name: str):
- if name in __all__:
- if name.endswith('Database'):
- file = name[:-8].lower()
- elif 'mysql' in name:
- file = 'mysql'
- elif 'clickhouse' in name:
- file = 'clickhouse'
- else:
- file = 'simple_state'
-
- module = importlib.import_module(f'.{file}', __name__)
- return getattr(module, name)
-
- raise AttributeError(f"module {__name__!r} has no attribute {name!r}")