Support emoji :D

This commit is contained in:
Brian Buller 2017-09-26 17:02:57 -05:00
parent 990e0dd50a
commit fe59d61d76
1 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,9 @@ package main
import (
"fmt"
"os"
"strings"
"github.com/kyokomi/emoji"
)
var emoticons map[string]string
@ -13,12 +16,14 @@ func main() {
emt := "¯\\_(ツ)_/¯"
if len(os.Args) > 1 {
which := os.Args[1]
fmt.Println(which)
if which == "help" {
for k, v := range emoticons {
fmt.Println(k, v)
}
os.Exit(0)
} else if which == "emoji" {
rest := strings.Join(os.Args[2:], " ")
emt = emoji.Sprint(rest)
} else {
if i, ok := emoticons[which]; ok {
emt = i