mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
17 lines
316 B
Go
17 lines
316 B
Go
package cli
|
|
|
|
import "github.com/coder/serpent"
|
|
|
|
func (r *RootCmd) ai() *serpent.Command {
|
|
return &serpent.Command{
|
|
Use: "ai",
|
|
Short: "Manage AI features.",
|
|
Handler: func(inv *serpent.Invocation) error {
|
|
return inv.Command.HelpHandler(inv)
|
|
},
|
|
Children: []*serpent.Command{
|
|
r.aiGateway(),
|
|
},
|
|
}
|
|
}
|