MCPcopy Create free account
hub / github.com/LumePart/Explo / wizardStep3

Function wizardStep3

src/web/frontend/src/lib/api.js:103–110  ·  view source on GitHub ↗
(body)

Source from the content-addressed store, hash-verified

101}
102
103export async function wizardStep3(body) {
104 const res = await apiFetch('/api/ui/wizard/step3', {
105 method: 'POST',
106 headers: { 'Content-Type': 'application/json' },
107 body: JSON.stringify(body),
108 })
109 if (!res.ok) throw new Error(await res.text())
110}
111
112export async function fetchBrowse(path) {
113 const res = await apiFetch('/api/ui/browse?path=' + encodeURIComponent(path || '/'))

Callers 1

handleStep3Function · 0.90

Calls 1

apiFetchFunction · 0.85

Tested by

no test coverage detected