frostfs-node/cmd/frostfs-adm/internal/modules/maintenance/root.go
Dmitrii Stepanov fc4e759ce5
Some checks failed
DCO action / DCO (pull_request) Successful in 29s
Vulncheck / Vulncheck (pull_request) Failing after 1m10s
Tests and linters / Staticcheck (pull_request) Successful in 1m53s
Tests and linters / Lint (pull_request) Failing after 2m4s
Build / Build Components (pull_request) Successful in 2m31s
Tests and linters / Tests (pull_request) Successful in 2m40s
Tests and linters / Tests with -race (pull_request) Successful in 3m4s
Tests and linters / gopls check (pull_request) Successful in 3m21s
[#9999] adm: Add maintenance zombie commands
Change-Id: I2e85169849e2b9b7f44817b93283fa2f2b903676
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2025-03-27 13:59:49 +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)
}