0.0.148 • Published 4 years ago

@community-fibre/client v0.0.148

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
4 years ago
ServiceClient.call<User | any>({

    service: 'identity/users/login',
    method: 'post',
    baseUrl: 'http://localhost:4010',
    body: {

        email: 'test@test.com',
        password: 'asdfasdf'

    },
    debug: false

}).subscribe(result => {

    // User
    console.log(result.response);

});