mirror of
https://github.com/status-im/consul.git
synced 2025-02-19 00:56:45 +00:00
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import BaseAbility from './base';
|
|
|
|
export default class NodeAbility extends BaseAbility {
|
|
resource = 'node';
|
|
}
|