summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.markdown4
-rw-r--r--binprotodebug/main.go2
-rw-r--r--binstream.go2
-rw-r--r--recv.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/README.markdown b/README.markdown
index 3ab3c57..e7e62c8 100644
--- a/README.markdown
+++ b/README.markdown
@@ -12,11 +12,11 @@ I'll publish this code, despite it's many quirks. Perhaps someone has a use for
## Installation
-`go get github.com/kch42/binproto`
+`go get github.com/silvasur/binproto`
## Documentation
-Either install the package and use a local godoc server or use [godoc.org](http://godoc.org/github.com/kch42/binproto)
+Either install the package and use a local godoc server or use [godoc.org](http://godoc.org/github.com/silvasur/binproto)
## Protocol definition
diff --git a/binprotodebug/main.go b/binprotodebug/main.go
index e474b07..6616be5 100644
--- a/binprotodebug/main.go
+++ b/binprotodebug/main.go
@@ -5,7 +5,7 @@ import (
"encoding/hex"
"flag"
"fmt"
- "github.com/kch42/binproto"
+ "github.com/silvasur/binproto"
"io"
"net"
"os"
diff --git a/binstream.go b/binstream.go
index 4240517..7871a87 100644
--- a/binstream.go
+++ b/binstream.go
@@ -3,7 +3,7 @@ package binproto
import (
"encoding/binary"
"errors"
- "github.com/kch42/kagus"
+ "github.com/silvasur/kagus"
"io"
"sync"
)
diff --git a/recv.go b/recv.go
index 1e374f9..f618c7d 100644
--- a/recv.go
+++ b/recv.go
@@ -2,7 +2,7 @@ package binproto
import (
"encoding/binary"
- "github.com/kch42/kagus"
+ "github.com/silvasur/kagus"
"io"
"sync"
)