11 lines
358 B
Python
11 lines
358 B
Python
"""Domain layer - Pure business logic for Intelligent Heating Pilot.
|
|
|
|
This layer contains the core intellectual property and is completely isolated
|
|
from Home Assistant and other infrastructure concerns.
|
|
|
|
Rules:
|
|
- NO homeassistant.* imports
|
|
- Only Python standard library and domain code
|
|
- All external interactions via Abstract Base Classes (interfaces)
|
|
"""
|