mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-21 04:11:50 +03:00
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
import axios from 'axios';
|
|
import Config from 'react-native-config';
|
|
|
|
const search = axios.create({
|
|
baseURL: Config.SEARCH_API_URL,
|
|
headers: {
|
|
Authorization: Config.SEARCH_API_TOKEN,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
// timeout: 500,
|
|
});
|
|
|
|
export default search;
|