2018-03-17 18:26:18 +05:30
|
|
|
import axios from '../../lib/utils/axios_utils';
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
export default class JobService {
|
|
|
|
constructor(endpoint) {
|
2018-03-17 18:26:18 +05:30
|
|
|
this.job = endpoint;
|
2017-09-10 17:25:29 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
getJob() {
|
2018-03-17 18:26:18 +05:30
|
|
|
return axios.get(this.job);
|
2017-09-10 17:25:29 +05:30
|
|
|
}
|
|
|
|
}
|