5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/vendor/github.com/kyokomi/emoji/v2
Wim 21eb37e471
Update vendor (#1446)
* Update vendor

* Use upstream emoji lib again
2021-04-03 19:16:46 +02:00
..
.gitignore Update vendor (#1446) 2021-04-03 19:16:46 +02:00
emoji_codemap.go Update vendor (#1446) 2021-04-03 19:16:46 +02:00
emoji.go Update vendor (#1446) 2021-04-03 19:16:46 +02:00
go.mod Update vendor (#1446) 2021-04-03 19:16:46 +02:00
LICENSE Update vendor (#1446) 2021-04-03 19:16:46 +02:00
README.md Update vendor (#1446) 2021-04-03 19:16:46 +02:00
wercker.yml Update vendor (#1446) 2021-04-03 19:16:46 +02:00

Emoji

Emoji is a simple golang package.

wercker status Coverage Status GoDoc

Get it:

go get github.com/kyokomi/emoji/v2

Import it:

import (
	"github.com/kyokomi/emoji/v2"
)

Usage

package main

import (
	"fmt"

	"github.com/kyokomi/emoji/v2"
)

func main() {
	fmt.Println("Hello World Emoji!")

	emoji.Println(":beer: Beer!!!")

	pizzaMessage := emoji.Sprint("I like a :pizza: and :sushi:!!")
	fmt.Println(pizzaMessage)
}

Demo

demo

Reference

License

MIT