[hw-3] loms service

This commit is contained in:
Никита Шубин
2025-06-20 10:11:59 +00:00
parent c8e056bc99
commit b88dfe6db5
73 changed files with 8837 additions and 52 deletions

View File

@@ -0,0 +1,19 @@
@startuml
actor User as u
collections LOMS as l
database OrdersStorage as os
u -> l : gRPC Loms.OrderInfo\n\t- orderID int64
activate l
l -> os : order.GetByID()
alt order exists
l -> u : Response: OK (code_id=0)\n\t- status\n\t- user\n\t- []items{}
else
l -> u : Response: Not Found (code_id=5)
end
deactivate l
@enduml