mirror of https://github.com/hashicorp/consul
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
import Adapter from './application';
|
|||
|
|||
export default Adapter.extend({
|
|||
requestForQuery: function(request) {
|
|||
return request`
|
|||
GET /v1/catalog/datacenters
|
|||
`;
|
|||
},
|
|||
});
|