Some checks failed
DCO action / DCO (pull_request) Successful in 30s
Tests and linters / Staticcheck (pull_request) Failing after 1m11s
Vulncheck / Vulncheck (pull_request) Failing after 1m21s
Build / Build Components (pull_request) Successful in 1m33s
Tests and linters / Lint (pull_request) Failing after 1m31s
Tests and linters / Tests (pull_request) Successful in 2m0s
Tests and linters / gopls check (pull_request) Successful in 2m51s
Tests and linters / Tests with -race (pull_request) Successful in 3m2s
Change-Id: I2e85169849e2b9b7f44817b93283fa2f2b903676 Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
15 lines
305 B
Go
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)
|
|
}
|