diff options
| author | Will Hawkins <[email protected]> | 2022-03-18 20:16:26 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-03-18 20:16:26 -0400 |
| commit | 88753564d50eb6d7e91ce2114ff72ed78b8e69cb (patch) | |
| tree | bb1011dfef939c3647899a3394d908c4265ce1a5 | |
| parent | d5dfc589d93715e07959a96eac6c469fdb405d7e (diff) | |
Move from hawkinsw repository ownership to Apple repository ownership.
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 8 | ||||
| -rw-r--r-- | lbc/lbc.go | 2 | ||||
| -rw-r--r-- | ma/ma.go | 4 |
5 files changed, 5 insertions, 13 deletions
@@ -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. @@ -1,4 +1,4 @@ -module github.com/hawkinsw/goresponsiveness +module github.com/network-quality/goresponsiveness go 1.17 @@ -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= @@ -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" ) @@ -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 |
