diff --git a/README.md b/README.md
index c5a5b3e..37390b1 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,20 @@
-
+
# 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!
-[](https://travis-ci.com/recws-org/recws)
-[](https://godoc.org/github.com/mariuspass/recws)
-[](https://goreportcard.com/report/github.com/mariuspass/recws)
-[](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE)
+[](https://travis-ci.com/andoma-go/recws)
+[](https://godoc.org/github.com/andoma-go/recws)
+[](https://goreportcard.com/report/github.com/andoma-go/recws)
+[](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