package viewmodel import ( pscart "prestaproxy/internal/prestashop/cart" pscatalog "prestaproxy/internal/prestashop/catalog" pscookie "prestaproxy/internal/prestashop/cookie" pscustomer "prestaproxy/internal/prestashop/customer" ) type ProductPageData struct { Product pscatalog.ProductPageData CategoryURL string Session *pscookie.SessionContext Customer *pscustomer.Profile CartSummary *pscart.Summary ShopBaseURL string }