2023-03-15 16:00:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
import Service from '@ember/service';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
export default Service.extend({
|
2018-04-03 14:16:57 +00:00
|
|
|
cluster: null,
|
|
|
|
|
|
|
|
setCluster(cluster) {
|
|
|
|
this.set('cluster', cluster);
|
|
|
|
},
|
|
|
|
});
|