- 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
21 lines
570 B
Plaintext
21 lines
570 B
Plaintext
@startuml
|
|
skinparam packageStyle rectangle
|
|
|
|
package "furniture-bff" {
|
|
class Program
|
|
interface IGetFurnitureAvailabilityHandler
|
|
class GetFurnitureAvailabilityHandler
|
|
interface IFurnitureServiceClient
|
|
|
|
GetFurnitureAvailabilityHandler ..|> IGetFurnitureAvailabilityHandler
|
|
GetFurnitureAvailabilityHandler --> IFurnitureServiceClient
|
|
}
|
|
|
|
package "Consumers" as Consumers
|
|
package "furniture-service" as FurnitureService
|
|
|
|
Consumers --> Program : REST
|
|
Program --> IGetFurnitureAvailabilityHandler
|
|
IFurnitureServiceClient ..> FurnitureService : gRPC/internal
|
|
@enduml
|