Skip to content

Instantly share code, notes, and snippets.

@brybrophy
Last active October 26, 2017 20:04
Show Gist options
  • Save brybrophy/e8aaeeb2684ced03d9435c767bd91102 to your computer and use it in GitHub Desktop.
Save brybrophy/e8aaeeb2684ced03d9435c767bd91102 to your computer and use it in GitHub Desktop.
import ApiCore from 'axios-core-api';
import axiosConfig from './axiosConfig.js';
class BaseApi {
constructor(apiCore) {
this._apiCore = apiCore;
}
}
const apiCore = new ApiCore(axiosConfig);
const baseApi = new BaseApi(apiCore);
export default baseApi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment