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