mirror of
				https://github.com/3ybactuk/marketplace-go-service-project.git
				synced 2025-10-30 05:53:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| @startuml
 | |
| 
 | |
| actor User as u
 | |
| collections Cart as c
 | |
| database CartStorage as cs
 | |
| 
 | |
| u -> c : DELETE /user/<user_id>/cart
 | |
| activate c
 | |
| c -> cs : cart.DeleteItemsByUserID
 | |
| c -> u : Response: 204 No Content
 | |
| deactivate c
 | |
| 
 | |
| @enduml
 | 
