Files
3ybactuk-marketplace-go-ser…/docs/homework-3/img/cart-cart-checkout.plantuml
Никита Шубин b88dfe6db5 [hw-3] loms service
2025-06-20 10:11:59 +00:00

19 lines
315 B
Plaintext

@startuml
actor User as u
collections Cart as c
database CartStorage as cs
collections Order as o
u -> c : POST /checkout/<user_id>
activate c
c -> cs : cart.GetItemsByUserID
c -> o : gRPC Loms.OrderCreate\n\t- user\n\t- []item
c -> cs : cart.DeleteItemsByUserID
c -> u : Response: 200 OK
deactivate c
@enduml