File size: 233 Bytes
b7317e5 | 1 2 3 4 5 6 7 8 | export async function submitJob(data: any) {
const res = await fetch('/api/backend/submit-job', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data),
});
return res.json();
} |