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