12 lines
226 B
Go
12 lines
226 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var editCmd = &cobra.Command{
|
|
Use: "edit FILE INSTRUCTION",
|
|
Short: "Edit a file in-place with Grok",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// TODO: implement
|
|
},
|
|
}
|