1 | |
2 | * list all available hub apps |
3 | * |
4 | */ |
5 | export async function main() { |
6 | const url = new URL(`${BASE_URL}/api/apps/hub/list`); |
7 |
|
8 | const response = await fetch(url, { |
9 | method: "GET", |
10 | headers: { |
11 | Authorization: "Bearer " + WM_TOKEN, |
12 | }, |
13 | body: undefined, |
14 | }); |
15 | return await response.json(); |
16 | } |
17 |
|