From 9fc3ec9350db4906f4c716593b82311b4e9c4caa Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Tue, 20 Dec 2022 11:14:52 +0100 Subject: [PATCH] fixed typo --- http/catalog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/catalog.go b/http/catalog.go index e527b78..7b5d08c 100644 --- a/http/catalog.go +++ b/http/catalog.go @@ -4,7 +4,7 @@ type AddProductToBasketRequest struct { ProductID int `json:"product_id"` } -type ProductAddToBasketResponse struct { +type AddProductToBasketResponse struct { BasketID string `json:"basket_id"` }