15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
|
import Vue from 'vue';
|
||
|
import VueResource from 'vue-resource';
|
||
|
|
||
|
Vue.use(VueResource);
|
||
|
|
||
|
export default class PipelineService {
|
||
|
constructor(endpoint) {
|
||
|
this.pipeline = Vue.resource(endpoint);
|
||
|
}
|
||
|
|
||
|
getPipeline() {
|
||
|
return this.pipeline.get();
|
||
|
}
|
||
|
}
|