12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
|
import axios from '~/lib/utils/axios_utils';
|
||
|
|
||
|
export default class GetFunctionsService {
|
||
|
constructor(endpoint) {
|
||
|
this.endpoint = endpoint;
|
||
|
}
|
||
|
|
||
|
fetchData() {
|
||
|
return axios.get(this.endpoint);
|
||
|
}
|
||
|
}
|