hass-core/homeassistant/components/__init__.py

17 lines
410 B
Python
Raw Normal View History

"""
homeassistant.components
~~~~~~~~~~~~~~~~~~~~~~~~
This package contains components that can be plugged into Home Assistant.
2014-01-04 18:24:30 -08:00
Component design guidelines:
Each component defines a constant DOMAIN that is equal to its filename.
Each component that tracks states should create state entity names in the
2014-01-04 18:24:30 -08:00
format "<DOMAIN>.<OBJECT_ID>".
Each component should publish services only under its own domain.
"""