ShoppingTools provides the shopping cart tool definitions and mock implementations
| 8 | |
| 9 | // ShoppingTools provides the shopping cart tool definitions and mock implementations |
| 10 | type ShoppingTools struct { |
| 11 | cart map[string]int // product_name -> quantity |
| 12 | } |
| 13 | |
| 14 | // NewShoppingTools creates a new instance of shopping tools |
| 15 | func NewShoppingTools() *ShoppingTools { |
nothing calls this directly
no outgoing calls
no test coverage detected