({location}: {location: string})
| 1 | const getWeather = ({location}: {location: string}) => { |
| 2 | return `Weather of ${location} is 16`; |
| 3 | }; |
| 4 | |
| 5 | const toolGetWeather = () => ({ |
| 6 | run: getWeather, |
nothing calls this directly
no outgoing calls
no test coverage detected