/* Copyright © 2023 NAME HERE */ package cmd import ( "fmt" "github.com/spf13/cobra" ) // listCmd represents the list command var listCmd = &cobra.Command{ Use: "list", Short: "List all active API Keys", Long: `Lists all of your currently active API Keys`, Run: func(cmd *cobra.Command, args []string) { fmt.Println("list called") }, } func init() { rootCmd.AddCommand(listCmd) }