mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-01-10 23:07:08 +00:00
11719991c0
The initial steps to modularize the smartdevice. Modules are initialized based on the component negotiation, and each module can indicate which features it supports and which queries should be run during the update cycle.
8 lines
274 B
Python
8 lines
274 B
Python
"""Modules for SMART devices."""
|
|
from .childdevicemodule import ChildDeviceModule
|
|
from .devicemodule import DeviceModule
|
|
from .energymodule import EnergyModule
|
|
from .timemodule import TimeModule
|
|
|
|
__all__ = ["TimeModule", "EnergyModule", "DeviceModule", "ChildDeviceModule"]
|