Keybase TUI written in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
896 B

5 years ago
// +build !rm_basic_commands allcommands reactcmd
package main
import (
"strconv"
"strings"
)
5 years ago
func init() {
command := Command{
Cmd: []string{"react", "r", "+"},
5 years ago
Description: "$messageID $reaction - React to a message (messageID is optional)",
5 years ago
Help: "",
5 years ago
Exec: cmdReact,
5 years ago
}
RegisterCommand(command)