intake/cmd/edit.go
2025-03-07 11:19:36 -08:00

23 lines
300 B
Go

package cmd
import (
"log"
"github.com/spf13/cobra"
)
var editCmd = &cobra.Command{
Use: "edit",
GroupID: feedGroup.ID,
Short: "Edit an item",
Long: `
`,
Run: func(cmd *cobra.Command, args []string) {
log.Fatal("not implemented")
},
}
func init() {
rootCmd.AddCommand(editCmd)
}