Skip to content

Commit 23e0c0f

Browse files
committed
update repo path and config
1 parent 07b0142 commit 23e0c0f

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
language: go
22
go:
3-
- 1.7.x
4-
- 1.8.x
5-
- 1.9.x
6-
- 1.10.x
7-
- tip
3+
- "1.11.x"
4+
- "1.12.x"
5+
- "1.13.x"
86
before_install:
97
- go get github.com/mattn/goveralls golang.org/x/tools/cmd/cover
108
install:
119
- echo doing nothing
1210
script:
13-
- mkdir -p $GOPATH/src/gitlab.com/jadr2ddude
14-
- cp -r $GOPATH/src/github.com/jadr2ddude/sse $GOPATH/src/gitlab.com/jadr2ddude/sse
15-
- $HOME/gopath/bin/goveralls -service=travis-ci
11+
- goveralls -service=travis-ci

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# sse [![GoDoc](https://godoc.org/github.com/jadr2ddude/sse?status.svg)](https://godoc.org/github.com/jadr2ddude/sse) [![Build Status](https://travis-ci.org/jadr2ddude/sse.svg?branch=master)](https://travis-ci.org/jadr2ddude/sse) [![Coverage Status](https://coveralls.io/repos/github/jadr2ddude/sse/badge.svg?branch=master)](https://coveralls.io/github/jadr2ddude/sse?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/jadr2ddude/sse)](https://goreportcard.com/report/github.com/jadr2ddude/sse)
1+
# sse [![GoDoc](https://godoc.org/github.com/jaddr2line/sse?status.svg)](https://godoc.org/github.com/jaddr2line/sse) [![Build Status](https://travis-ci.org/jaddr2line/sse.svg?branch=master)](https://travis-ci.org/jaddr2line/sse) [![Coverage Status](https://coveralls.io/repos/github/jaddr2line/sse/badge.svg?branch=master)](https://coveralls.io/github/jaddr2line/sse?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/jaddr2line/sse)](https://goreportcard.com/report/github.com/jaddr2line/sse)
22

33
Golang HTML5 Server-Sent-Events
44

55
According to the following specification: https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events (recommended by https://www.w3.org/TR/2015/REC-eventsource-20150203/)
66

77
### Example
88

9-
See [example](https://github.com/jadr2ddude/sse/tree/master/example) for an example.
9+
See [example](https://github.com/jaddr2line/sse/tree/master/example) for an example.

example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"net/http"
77

8-
"gitlab.com/jadr2ddude/sse"
8+
"github.com/jaddr2line/sse"
99
)
1010

1111
type msg struct {

0 commit comments

Comments
 (0)