blob: 90947a510bdcdf1fefdb3bd9ebc22104d5edbd9a (
plain)
1
2
3
4
5
6
7
8
9
|
import {getAll, getById} from "./util";
export function getAllJobs() {
return getAll("/jobs");
}
export function getTasksOfJob(jobId) {
return getById("/jobs/{jobId}/tasks", {jobId});
}
|