I can set one api provider per angularjs app for restangular like this
RestangularProvider.setBaseUrl('http://localhost:8080/api');
but how do i setup multiple base url's and use them selectively. I want to configure and use both of below end points
RestangularProvider.setBaseUrl('http://localhost:8080/api');
RestangularProvider.setBaseUrl('http://localhost:8090/apiws');
how do I do it with Restangular?