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