summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-03-18 20:16:26 -0400
committerWill Hawkins <[email protected]>2022-03-18 20:16:26 -0400
commit88753564d50eb6d7e91ce2114ff72ed78b8e69cb (patch)
treebb1011dfef939c3647899a3394d908c4265ce1a5
parentd5dfc589d93715e07959a96eac6c469fdb405d7e (diff)
Move from hawkinsw repository ownership to Apple repository ownership.
-rw-r--r--README.md2
-rw-r--r--go.mod2
-rw-r--r--go.sum8
-rw-r--r--lbc/lbc.go2
-rw-r--r--ma/ma.go4
5 files changed, 5 insertions, 13 deletions
diff --git a/README.md b/README.md
index bcbec21..fafb1cc 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ To install Go, follow the excellent documentation [online](https://go.dev/doc/in
To get the source code,
```
-$ git clone https://github.com/hawkinsw/goresponsiveness.git
+$ git clone https://github.com/network-quality/goresponsiveness.git
```
For the remainder of the instructions, we will assume that `${RSPVNSS_SOURCE_DIR}` is the location of the source code.
diff --git a/go.mod b/go.mod
index 6d9aea8..3399330 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/hawkinsw/goresponsiveness
+module github.com/network-quality/goresponsiveness
go 1.17
diff --git a/go.sum b/go.sum
index d1f44fc..4832ce9 100644
--- a/go.sum
+++ b/go.sum
@@ -1,12 +1,4 @@
-golang.org/x/net v0.0.0-20211209124913-491a49abca63 h1:iocB37TsdFuN6IBRZ+ry36wrkoV51/tl5vOWqkcPGvY=
-golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20220225172249-27dd8689420f h1:oA4XRj0qtSt8Yo1Zms0CUlsT3KG69V2UGQWPBxujDmc=
golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
-golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
-golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
-golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
diff --git a/lbc/lbc.go b/lbc/lbc.go
index d54ba3a..e12fc71 100644
--- a/lbc/lbc.go
+++ b/lbc/lbc.go
@@ -23,7 +23,7 @@ import (
"net/http"
"sync/atomic"
- "github.com/hawkinsw/goresponsiveness/utilities"
+ "github.com/network-quality/goresponsiveness/utilities"
"golang.org/x/net/http2"
)
diff --git a/ma/ma.go b/ma/ma.go
index 2f28277..078fb1b 100644
--- a/ma/ma.go
+++ b/ma/ma.go
@@ -15,8 +15,8 @@
package ma
import (
- "github.com/hawkinsw/goresponsiveness/saturating"
- "github.com/hawkinsw/goresponsiveness/utilities"
+ "github.com/network-quality/goresponsiveness/saturating"
+ "github.com/network-quality/goresponsiveness/utilities"
)
// Convert this to a Type Parameterized interface when they are available