Skip to content

Commit e94a123

Browse files
committed
Move battery specific code to _battery_manager.py
This just moves the code out, so that it becomes easier to generalize and cleanup. Signed-off-by: Sahas Subramanian <[email protected]>
1 parent 57434f8 commit e94a123

File tree

9 files changed

+825
-654
lines changed

9 files changed

+825
-654
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# License: MIT
2+
# Copyright © 2023 Frequenz Energy-as-a-Service GmbH
3+
4+
"""Interfaces for the power distibuting actor with different component types."""
5+
6+
from ._battery_manager import BatteryManager
7+
from ._component_manager import ComponentManager
8+
9+
__all__ = [
10+
"BatteryManager",
11+
"ComponentManager",
12+
]

0 commit comments

Comments
 (0)