[#283] cli: Move control healthcheck command under control ir

Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
This commit is contained in:
Alejandro Lopez 2023-05-18 13:08:05 +03:00 committed by Evgenii Stratonikov
parent 35c9b6b26d
commit e3ad3c2965
3 changed files with 54 additions and 33 deletions

View file

@ -11,7 +11,9 @@ var irCmd = &cobra.Command{
func initControlIRCmd() {
irCmd.AddCommand(tickEpochCmd)
irCmd.AddCommand(removeNodeCmd)
irCmd.AddCommand(irHealthCheckCmd)
initControlIRTickEpochCmd()
initControlIRRemoveNodeCmd()
initControlIRHealthCheckCmd()
}