mirror of
				https://github.com/3ybactuk/marketplace-go-service-project.git
				synced 2025-10-31 06:23:44 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| @startuml
 | |
| 
 | |
| actor User as u
 | |
| collections Cart as c
 | |
| database CartStorage as cs
 | |
| 
 | |
| u -> c : DELETE /user/<user_id>/cart/<sku_id>
 | |
| activate c
 | |
| c -> cs : cart.DeleteItem(userID, skuID)
 | |
| c -> u : Response: 204 No Content
 | |
| deactivate c
 | |
| 
 | |
| @enduml
 | 
