Use this connector to create a datasource from another Loopback application. Below is a quick example:
### datasource.json
```json
"MyMicroService": {
"name": "MyMicroService",
"connector": "remote"
}
```
Note that you should add a `url` property to point to another remote service.
If you do not specify a `url` property, the remote connector will point to it's own host name, port it's running on, etc.
The connector will generate models on the MyMicroService datasource object based on the models/methods exposed from the remote service. Those models will have methods attached that are
from the model's remote methods. So if you exposed a remote method from that micro-service called `bar` from the model `foo`,
the connector will automatically generate the following: