(c *grumble.Context)
| 77 | } |
| 78 | |
| 79 | func stringStrLen(c *grumble.Context) error { |
| 80 | key := c.Args.String("key") |
| 81 | strLen, err := newClient().StrLen(key) |
| 82 | if err != nil { |
| 83 | return nil |
| 84 | } |
| 85 | fmt.Println(strLen) |
| 86 | return nil |
| 87 | } |
| 88 | |
| 89 | // GetSet sets the value of a key and returns its old value |
| 90 | func stringGetSet(c *grumble.Context) error { |