added support for home assistant postgres database and convenience function to get state of entity

This commit is contained in:
Brian Bjarke Jensen
2026-01-24 19:48:13 +01:00
parent aaa724164c
commit d59f7d2e2d
20 changed files with 504 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
"""Definition of dataframes."""
from .sensor_state import SensorStateSchema
__all__ = [
"SensorStateSchema",
]