2017-12-02 00:34:01 +05:30
|
|
|
/**
|
|
|
|
* Mock response for login api
|
|
|
|
* @returns {promise}
|
|
|
|
*/
|
|
|
|
export default function() {
|
|
|
|
const response = {
|
2018-03-21 21:44:19 +01:00
|
|
|
url: 'http://xyz.com/image.jpg'
|
2017-12-02 00:34:01 +05:30
|
|
|
};
|
|
|
|
return Promise.resolve(response);
|
|
|
|
}
|