2
0

chore: change module name after fork

This commit is contained in:
2023-06-01 23:26:03 +03:00
parent e81142b167
commit 7dd5713f7a
3 changed files with 10 additions and 10 deletions
+7 -7
View File
@@ -1,20 +1,20 @@
<img width="150" src="https://raw.githubusercontent.com/recws-org/recws/master/recws-logo.png" alt="logo">
<img width="150" src="https://raw.githubusercontent.com/andoma-go/recws/master/recws-logo.png" alt="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
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"log"
"time"
"github.com/nikepan/recws"
"github.com/andoma-go/recws"
)
func main() {
+1 -1
View File
@@ -1,4 +1,4 @@
module github.com/nikepan/recws
module github.com/andoma-go/recws
go 1.18