Files
qbot/api/set_model_show.go

11 lines
219 B
Go

package api
func SetModelShow(c Client, model, modelShow string) error {
params := map[string]any{
"model": model,
"model_show": modelShow,
}
_, err := c.SendParams("_set_model_show", params)
return err
}