Hello guys,
Apologies if this has already been discussed but I couldn't find it.
I've just converted a server to use modules. I did it by "go mod init
example.com/server-name" in the directory where "package main" is. I then got the latest module for each dependency by doing "go get -u". The resulting dependency list showed me which packages are not yet Go module enabled, and where I have work to do:
So, I see that I've got some work to do to request that go-colortext converts to a Go module, or at least makes a semver tag.
And also, it made me come here to search for how/when to expect
golang.org/x/sys to act like a real module.
Thanks for any pointers to an explanation of the Go team's plans for
golang.org/x packages.
-jeff