mirror of https://github.com/Rudi9719/kbtui.git
Gregory Rudolph
5 years ago
1 changed files with 0 additions and 27 deletions
@ -1,27 +0,0 @@
@@ -1,27 +0,0 @@
|
||||
// +ignore
|
||||
// +build type_commands autoreactcmd
|
||||
|
||||
package main |
||||
|
||||
import ( |
||||
"samhofi.us/x/keybase" |
||||
) |
||||
|
||||
func init() { |
||||
command := TypeCommand{ |
||||
Cmd: []string{"text"}, |
||||
Name: "AutoReact", |
||||
Description: "Automatically reacts to every incoming message with an emoji", |
||||
Exec: tcmdAutoReact, |
||||
} |
||||
|
||||
RegisterTypeCommand(command) |
||||
} |
||||
|
||||
func tcmdAutoReact(m keybase.ChatAPI) { |
||||
msgID := m.Msg.ID |
||||
channel := m.Msg.Channel |
||||
chat := k.NewChat(channel) |
||||
chat.React(msgID, ":+1:") |
||||
|
||||
} |
Loading…
Reference in new issue