mirror of
https://github.com/golang/net.git
synced 2026-04-01 02:47:08 +09:00
This change adds a go.mod and go.sum file to this repo, following the requirements stated in bcmills's comment here: https://golang.org/issue/28136#issuecomment-462971974. It's important to note that we will not be adding versions to the repo for now. This change also creates a new module with the module path golang.org/x/net/http2/h2demo, and moves the h2demo command into it. This is done by adding a go.mod file in the http2/h2demo directory. As a result, the h2demo command and its dependencies are removed from this and later pseudo-versions of the golang.org/x/net module. The change was generated using Go 1.12. Updates golang/go#28136 Fixes golang/go#30685 Change-Id: Ia5b0f6623c3374355b76106432190a0c9acf3d05 Reviewed-on: https://go-review.googlesource.com/c/net/+/162822 Run-TryBot: Michael Matloob <matloob@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
7 lines
119 B
Modula-2
7 lines
119 B
Modula-2
module golang.org/x/net
|
|
|
|
require (
|
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
|
|
golang.org/x/text v0.3.0
|
|
)
|