index.js 208 Bytes
Newer Older
bert committed
1 2 3
import Api from './api';

const api = new Api({
fukai committed
4
  baseURI: window.serviceURL,
bert committed
5 6
  headers: {
    'Accept': 'application/json',
fukai committed
7
    "Content-Type": "application/x-www-form-urlencoded"
bert committed
8 9 10 11
  }
})

export default api