-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add BaseCommand.getConsensusNodes() method (#1364)
Signed-off-by: Jeromy Cannon <[email protected]>
- Loading branch information
1 parent
ae7d44f
commit 44703a4
Showing
5 changed files
with
114 additions
and
218 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export class ConsensusNode { | ||
constructor( | ||
public readonly name: string, | ||
public readonly nodeId: number, | ||
public readonly namespace: string, | ||
public readonly cluster: string, | ||
public readonly context: string, | ||
) {} | ||
} |
Oops, something went wrong.