List flows on the Windmill Hub
1
// Should return {flows: [{…},…]}
2
3
export async function main() {
4
const url = "https://hub.windmill.dev/searchFlowData";
5
const response = await fetch(url);
6
return await response.json();
7
}
8