building-block-catalog/docs/architecture/catalog-contract-boundary.puml
José René White Enciso d45d882437 feat(stage3): scaffold task-001 baseline
- WHY: establish Stage 3 task-001 execution baseline per repo intent
- WHAT: add minimal solution/project skeleton and boundary docs
- RULE: apply stage3 execution runtime and repository workflow directives
2026-02-22 01:30:02 -06:00

23 lines
482 B
Plaintext

@startuml
skinparam packageStyle rectangle
package "building-block-catalog" {
package "BuildingBlock.Catalog.Contracts" {
class Products
class Tags
interface Abstractions
}
}
package "furniture-dal" as FurnitureDal
package "furniture-service" as FurnitureService
package "furniture-bff" as FurnitureBff
FurnitureDal --> Products
FurnitureDal --> Tags
FurnitureService --> Products
FurnitureService --> Tags
FurnitureBff --> Products
FurnitureBff --> Tags
@enduml