Create a program that models a shopping cart for a e-commerce website. The program should include the following structs:
Itemstruct, with fields for the item's name, price, and quantity.Cartstruct, with a field for a slice of Item structs and methods for adding an item to the cart, removing an item from the cart, and calculating the total cost of the items in the cart.
Your program should allow a user to create a new cart, add items to the cart, remove items from the cart, and display the total cost of the items in the cart.
Here is a skeleton of the code