[#426] cli: Add object nodes command

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2023-06-20 16:33:05 +03:00 committed by Evgenii Stratonikov
parent ab489265b3
commit 72fedff7ad
2 changed files with 361 additions and 1 deletions

View file

@ -30,7 +30,8 @@ func init() {
objectHeadCmd,
objectHashCmd,
objectRangeCmd,
objectLockCmd}
objectLockCmd,
objectNodesCmd}
Cmd.AddCommand(objectChildCommands...)
@ -47,4 +48,5 @@ func init() {
initObjectHashCmd()
initObjectRangeCmd()
initCommandObjectLock()
initObjectNodesCmd()
}