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