1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 06:27:24 +00:00

Why not ¯\_(ツ)_/¯

This commit is contained in:
2019-10-16 16:41:58 -04:00
parent fc7637150d
commit dc52c48d99

23
cmdShrug.go Normal file
View File

@ -0,0 +1,23 @@
// +ignore
// +build allcommands shrugcmd
package main
import "strings"
func init() {
command := Command{
Cmd: []string{"shrug", "shrg"},
Description: "$message - append a shrug ( ¯\\_(ツ)_/¯ )to your message",
Help: "",
Exec: cmdShrug,
}
RegisterCommand(command)
}
func cmdShrug(cmd []string) {
cmd = append(cmd, " ¯\\_(ツ)_/¯")
sendChat(strings.Join(cmd[1:], " "))
}