12 lines
215 B
Go
12 lines
215 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var chatCmd = &cobra.Command{
|
|
Use: "chat",
|
|
Short: "Interactive streaming chat with Grok",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// TODO: implement
|
|
},
|
|
}
|