2026-02-28 18:03:12 +00:00
|
|
|
package cmd
|
2026-02-28 18:28:27 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
},
|
|
|
|
|
}
|