diff --git a/README.md b/README.md index 8cae163..078331c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@
-
+
@@ -16,7 +16,7 @@ Using no external libraries, just internal Golang libraries.
## How to use?
Get package:
```shell
-go get github.com/amirhnajafiz/stallion@latest
+go get github.com/official-stallion/stallion@latest
```
Now to set the client up you need to create a **stallion** server.
@@ -26,7 +26,7 @@ Stallion server is the message broker server.
```go
package main
-import "github.com/amirhnajafiz/stallion"
+import "github.com/official-stallion/stallion"
func main() {
if err := stallion.NewServer(":9090"); err != nil {
@@ -47,7 +47,7 @@ import (
"fmt"
"time"
- "github.com/amirhnajafiz/stallion"
+ "github.com/official-stallion/stallion"
)
func main() {