aboutsummaryrefslogtreecommitdiff
path: root/src/modules/login/login.service.js
blob: 15fc3cca78be6f076831e556463d0759f8da0fea (plain)
1
2
3
4
5
6
7
8
9
import HttpService from '../../services/http.service';

export const loginMock = (params)=>{
    return HttpService.fetch({
        url: 'https://reqres.in/api/login',
        method: 'post',
        data: params
    });
}