package model import "route256/cart/internal/domain/entity" type Cart struct { UserID entity.UID Items []*Item TotalPrice uint32 }