mirror of
https://github.com/emojisum/emojisum.git
synced 2024-11-27 09:45:40 +00:00
commit
4473c4a278
4 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@ sudo: false
|
||||||
before_install:
|
before_install:
|
||||||
- git config --global url."https://".insteadOf git://
|
- git config --global url."https://".insteadOf git://
|
||||||
- go get -u github.com/golang/lint/golint
|
- go get -u github.com/golang/lint/golint
|
||||||
- mkdir -p $GOPATH/src/github.com/vbatts && ln -sf $(pwd) $GOPATH/src/github.com/vbatts/emojisum
|
- mkdir -p $GOPATH/src/github.com/emojisum && ln -sf $(pwd) $GOPATH/src/github.com/emojisum/emojisum
|
||||||
- go get -d ./...
|
- go get -d ./...
|
||||||
|
|
||||||
install: true
|
install: true
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# emojisum
|
# emojisum
|
||||||
[![Build Status](https://travis-ci.org/vbatts/emojisum.svg?branch=master)](https://travis-ci.org/vbatts/emojisum)
|
[![Build Status](https://travis-ci.org/emojisum/emojisum.svg?branch=master)](https://travis-ci.org/emojisum/emojisum)
|
||||||
|
|
||||||
:pray: :paperclip: Emoji that checksum! :tada: :poop:
|
:pray: :paperclip: Emoji that checksum! :tada: :poop:
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ Perma-URL:
|
||||||
## build
|
## build
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
go get github.com/vbatts/emojisum
|
go get github.com/emojisum/emojisum
|
||||||
```
|
```
|
||||||
|
|
||||||
## usage
|
## usage
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
"github.com/vbatts/emojisum/emoji"
|
"github.com/emojisum/emojisum/emoji"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
2
main.go
2
main.go
|
@ -11,8 +11,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
esum "github.com/emojisum/emojisum/emoji"
|
||||||
"github.com/kyokomi/emoji"
|
"github.com/kyokomi/emoji"
|
||||||
esum "github.com/vbatts/emojisum/emoji"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
Loading…
Reference in a new issue