refactor(structure): move layered firmware modules from main to components

This commit is contained in:
admin
2026-02-26 10:22:24 +08:00
parent cf1fecb004
commit 044618b4ed
73 changed files with 49 additions and 49 deletions

View File

@@ -0,0 +1,9 @@
# Domain Layer
Purpose: business capabilities with single responsibility per domain service.
Rules:
- Expose stable domain APIs in `include/`.
- Keep implementation details in `internal/` and `src/`.
- No direct cross-domain internal state access.
- Cross-domain interactions must use events or Port interfaces.