Publishing Go packages
There are many ways you can share Go code and applications. Here are a few. publishing to the Go package index (pkg.go.dev) This allows anyone with Go installed to download your package with go get or go install. go get is for getting code, and go install is for installing executables. More details on those commands are in the Go docs and this Stack Overflow discussion. Here are the official docs on publishing to pkg....