mirror of https://github.com/fluxcd/flux2.git
15 lines
183 B
Go
15 lines
183 B
Go
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var suspendCmd = &cobra.Command{
|
||
|
Use: "suspend",
|
||
|
Short: "Suspend commands",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(suspendCmd)
|
||
|
}
|