mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-03-22 02:57:23 +00:00
Why not ¯\_(ツ)_/¯
This commit is contained in:
23
cmdShrug.go
Normal file
23
cmdShrug.go
Normal 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:], " "))
|
||||
}
|
||||
Reference in New Issue
Block a user