mirror of https://github.com/hashicorp/consul
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
|
import Service from '@ember/service';
|
||
|
export default Service.extend({
|
||
|
searchable: function() {
|
||
|
return {
|
||
|
addEventListener: function() {},
|
||
|
removeEventListener: function() {},
|
||
|
};
|
||
|
},
|
||
|
});
|