mirror of https://github.com/status-im/consul.git
15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
(services => services({
|
|
"component:consul/peer/selector": {
|
|
"class": "consul-ui/components/consul/peer/selector"
|
|
}
|
|
}))(
|
|
(json, data = (typeof document !== 'undefined' ? document.currentScript.dataset : module.exports)) => {
|
|
data[`services`] = JSON.stringify(json);
|
|
}
|
|
);
|