1
0
mirror of synced 2026-03-13 15:26:55 +00:00
Files
flux2/cmd/tk/resume.go
stefanprodan e5e06783bd Implement ks delete, suspend, resume commands
- add delete kustomization command with confirmation and warning id not suspended
- add suspend kustomization command
- add resume kustomization command
- add suspend/resume/delete e2e tests
2020-04-29 17:45:22 +03:00

15 lines
179 B
Go

package main
import (
"github.com/spf13/cobra"
)
var resumeCmd = &cobra.Command{
Use: "resume",
Short: "Resume commands",
}
func init() {
rootCmd.AddCommand(resumeCmd)
}