Lists apps on the Windmill Hub
by jaller94 · 10/1/2022
1
//native
2
3
// Should return {apps: [{…},…]}
4
5
export async function main() {
6
const url = "https://hub.windmill.dev/searchAppData";
7
const response = await fetch(url);
8
return await response.json();
9
}
10