16 lines
412 B
Python
16 lines
412 B
Python
"""
|
|
homeassistant.components
|
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
This package contains components that can be plugged into Home Assistant.
|
|
|
|
Component design guidelines:
|
|
|
|
Each component defines a constant DOMAIN that is equal to its filename.
|
|
|
|
Each component that tracks states should create state category names in the
|
|
format "<DOMAIN>.<OBJECT_ID>".
|
|
|
|
Each component should publish services only under its own domain.
|
|
|
|
"""
|