- 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
20 lines
413 B
Plaintext
20 lines
413 B
Plaintext
@startuml
|
|
skinparam packageStyle rectangle
|
|
|
|
package "building-block-inventory" {
|
|
package "BuildingBlock.Inventory.Contracts" {
|
|
class Requests
|
|
class Responses
|
|
interface Abstractions
|
|
}
|
|
}
|
|
|
|
package "furniture-service" as FurnitureService
|
|
package "furniture-bff" as FurnitureBff
|
|
|
|
FurnitureService --> Requests
|
|
FurnitureService --> Responses
|
|
FurnitureBff --> Requests
|
|
FurnitureBff --> Responses
|
|
@enduml
|