python-kasa/kasa/interfaces/__init__.py
2024-05-11 19:40:08 +01:00

15 lines
236 B
Python

"""Package for interfaces."""
from .fan import Fan
from .led import Led
from .light import Light, LightPreset
from .lighteffect import LightEffect
__all__ = [
"Fan",
"Led",
"Light",
"LightEffect",
"LightPreset",
]