2023-04-13 11:43:03 +02:00

20 lines
441 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var system_infoCmd = &cobra.Command{
Use: "info [OPTIONS]",
Short: "Display system-wide information",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(system_infoCmd).Standalone()
system_infoCmd.Flags().StringP("format", "f", "", "Format the output using the given Go template")
systemCmd.AddCommand(system_infoCmd)
}