You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matterbridge/vendor/github.com/kyokomi/emoji/v2
Wim 2f33fe86f5
Update dependencies and build to go1.22 (#2113)
* Update dependencies and build to go1.22

* Fix api changes wrt to dependencies

* Update golangci config
1 week ago
..
.gitignore Update vendor (#1446) 3 years ago
LICENSE Update vendor (#1446) 3 years ago
README.md Update dependencies (#1951) 1 year ago
emoji.go Update dependencies and build to go1.22 (#2113) 1 week ago
emoji_codemap.go Update dependencies and build to go1.22 (#2113) 1 week ago

README.md

Emoji

Emoji is a simple golang package.

master workflow 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