frostfs-node/cmd/frostfs-adm/internal/modules/maintenance/root.go
Dmitrii Stepanov 4cb32170f3
Some checks failed
DCO action / DCO (pull_request) Successful in 33s
Build / Build Components (pull_request) Successful in 1m29s
Vulncheck / Vulncheck (pull_request) Failing after 1m20s
Tests and linters / Staticcheck (pull_request) Successful in 2m34s
Tests and linters / Lint (pull_request) Successful in 2m59s
Tests and linters / Tests with -race (pull_request) Successful in 3m7s
Tests and linters / gopls check (pull_request) Successful in 3m54s
Tests and linters / Tests (pull_request) Failing after 41s
[#9999] adm: Add maintenance zombie commands
Change-Id: I2e85169849e2b9b7f44817b93283fa2f2b903676
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2025-03-28 11:11:04 +03:00

15 lines
305 B
Go

package maintenance
import (
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/maintenance/zombie"
"github.com/spf13/cobra"
)
var RootCmd = &cobra.Command{
Use: "maintenance",
Short: "Section for maintenance commands",
}
func init() {
RootCmd.AddCommand(zombie.Cmd)
}