mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-24 22:03:21 +03:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
import axios from 'axios';
|
|
import Config from 'react-native-config';
|
|
|
|
const ePoint = axios.create({
|
|
baseURL: Config.BACKEND_URL,
|
|
headers: {
|
|
'User-Agent': Config.USER_AGENT,
|
|
},
|
|
});
|
|
|
|
export default ePoint;
|