2024-03-11 19:32:42 +01:00

19 lines
333 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var getStateCmd = &cobra.Command{
Use: "get-state",
Short: "print offline | bootloader | device",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(getStateCmd).Standalone()
rootCmd.AddCommand(getStateCmd)
}