2
0

change repo

This commit is contained in:
Nikolay Pavlovich
2022-09-04 02:06:46 +03:00
parent 3e74d640ea
commit aff7096e60
3 changed files with 9 additions and 6 deletions
+5 -3
View File
@@ -2,6 +2,8 @@
# recws
***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)
@@ -12,7 +14,7 @@ Reconnecting WebSocket is a websocket client based on [gorilla/websocket](https:
## Installation
```bash
go get github.com/recws-org/recws
go get github.com/nikepan/recws
```
## Sponsors
@@ -21,8 +23,8 @@ go get github.com/recws-org/recws
## Logo
- Logo by [Anastasia Marx](https://www.behance.net/AnastasiaMarx)
- Gopher by [Gophers](https://github.com/egonelbre/gophers)
- Logo by [Anastasia Marx](https://www.behance.net/AnastasiaMarx)
- Gopher by [Gophers](https://github.com/egonelbre/gophers)
## License
+2 -1
View File
@@ -2,9 +2,10 @@ package main
import (
"context"
"github.com/recws-org/recws"
"log"
"time"
"github.com/nikepan/recws"
)
func main() {
+2 -2
View File
@@ -1,6 +1,6 @@
module github.com/recws-org/recws
module github.com/nikepan/recws
go 1.17
go 1.18
require (
github.com/gorilla/websocket v1.4.2