5 lines
161 B
JavaScript
5 lines
161 B
JavaScript
export default async function fetchCurrent() {
|
|
const resp = await fetch("https://data.wowtoken.app/v2/current/retail.json");
|
|
return await resp.json();
|
|
}
|