// Should return {asks: [{…},…]}
export async function main() {
const url = "https://hub.windmill.dev/searchData";
const response = await fetch(url);
return await response.json();
}
Submitted by hugo697 5 days ago
// Should return {asks: [{…},…]}
export async function main() {
const url = "https://hub.windmill.dev/searchData";
const response = await fetch(url);
return await response.json();
}
Submitted by jaller94 954 days ago