(ticker: string)
| 73 | } |
| 74 | } |
| 75 | export async function getTickers(ticker: string) { |
| 76 | return JSON.stringify({ type: 'ticker', data: ticker }); |
| 77 | } |
| 78 | export async function searchSong(query: string): Promise<string> { |
| 79 | const items = await api.search(query, ["track"]); |
| 80 | const track = items.tracks.items[0]; |
nothing calls this directly
no outgoing calls
no test coverage detected