()
| 48 | `; |
| 49 | |
| 50 | async function getWorkflows() { |
| 51 | const response = await api.fetchApi("/pysssss/workflows", { cache: "no-store" }); |
| 52 | return await response.json(); |
| 53 | } |
| 54 | |
| 55 | async function getWorkflow(name) { |
| 56 | const response = await api.fetchApi(`/pysssss/workflows/${encodeURIComponent(name)}`, { cache: "no-store" }); |