From 7dd5713f7aecb206e807af458c8d095ec24bc097 Mon Sep 17 00:00:00 2001 From: Sergey Solodyagin Date: Thu, 1 Jun 2023 23:26:03 +0300 Subject: [PATCH] chore: change module name after fork --- README.md | 16 ++++++++-------- examples/basic.go | 2 +- go.mod | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c5a5b3e..37390b1 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,20 @@ -logo +logo # recws -***This is fork of [recws-org/recws](https://github.com/recws-org/recws) with some fixes*** +**_This is fork of [recws-org/recws](https://github.com/recws-org/recws) with some fixes_** Reconnecting WebSocket is a websocket client based on [gorilla/websocket](https://github.com/gorilla/websocket) that will automatically reconnect if the connection is dropped - thread safe! -[![Build Status](https://travis-ci.com/recws-org/recws.svg?branch=master)](https://travis-ci.com/recws-org/recws) -[![GoDoc](https://godoc.org/github.com/mariuspass/recws?status.svg)](https://godoc.org/github.com/mariuspass/recws) -[![Go Report Card](https://goreportcard.com/badge/github.com/mariuspass/recws)](https://goreportcard.com/report/github.com/mariuspass/recws) -[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE) +[![Build Status](https://travis-ci.com/andoma-go/recws.svg?branch=master)](https://travis-ci.com/andoma-go/recws) +[![GoDoc](https://godoc.org/github.com/andoma-go/recws?status.svg)](https://godoc.org/github.com/andoma-go/recws) +[![Go Report Card](https://goreportcard.com/badge/github.com/andoma-go/recws)](https://goreportcard.com/report/github.com/andoma-go/recws) +[![GitHub license](https://img.shields.io/github/license/andoma-go/recws.svg)](https://github.com/andoma-go/recws/blob/master/LICENSE) ## Installation ```bash -go get github.com/nikepan/recws +go get github.com/andoma-go/recws ``` ## Sponsors @@ -28,4 +28,4 @@ go get github.com/nikepan/recws ## License -recws is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT). \ No newline at end of file +recws is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/examples/basic.go b/examples/basic.go index 4a8df37..3346294 100644 --- a/examples/basic.go +++ b/examples/basic.go @@ -5,7 +5,7 @@ import ( "log" "time" - "github.com/nikepan/recws" + "github.com/andoma-go/recws" ) func main() { diff --git a/go.mod b/go.mod index 047a5bd..8f0b6c8 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/nikepan/recws +module github.com/andoma-go/recws go 1.18