Update go module paths

This commit is contained in:
kayos@tcp.direct 2022-08-28 04:17:53 -07:00
parent 6eb763b1c0
commit f9f7cd3e7e
Signed by: kayos
GPG Key ID: 4B841471B4BEE979
4 changed files with 9 additions and 7 deletions

2
.gitignore vendored
View File

@ -20,3 +20,5 @@ _cgo_export.*
_testmain.go
*.exe
.idea/

6
go.mod
View File

@ -1,8 +1,8 @@
module h12.io/socks
module git.tcp.direct/kayos/socks
go 1.9
go 1.19
require (
github.com/h12w/go-socks5 v0.0.0-20200522160539-76189e178364
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
)

4
go.sum
View File

@ -1,4 +1,4 @@
github.com/h12w/go-socks5 v0.0.0-20200522160539-76189e178364 h1:5XxdakFhqd9dnXoAZy1Mb2R/DZ6D1e+0bGC/JhucGYI=
github.com/h12w/go-socks5 v0.0.0-20200522160539-76189e178364/go.mod h1:eDJQioIyy4Yn3MVivT7rv/39gAJTrA7lgmYr8EW950c=
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 h1:JhzVVoYvbOACxoUmOs6V/G4D5nPVUW73rKvXxP4XUJc=
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE=
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5 h1:Ii+DKncOVM8Cu1Hc+ETb5K+23HdAMvESYE3ZJ5b5cMI=
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE=

View File

@ -10,7 +10,7 @@ A complete example using this package:
package main
import (
"h12.io/socks"
"git.tcp.direct/kayos/socks"
"fmt"
"net/http"
"io/ioutil"
@ -39,7 +39,7 @@ A complete example using this package:
return
}
*/
package socks // import "h12.io/socks"
package socks // import "git.tcp.direct/kayos/socks"
import (
"fmt"