Using Ray With Go
Go is a statically typed, compiled language designed for simplicity and efficiency. Use Ray to help you debug your Go applications. This is a third-party package with community support only.
#Installing the package
When using Go Modules, you do not need to install anything to start using Ray with your Go program. Import the module and Go will automatically download the latest version when you next build your program.
import (
"github.com/octoper/go-ray"
)
With or without Go Modules, to use the latest version of the SDK, run:
go get github.com/octoper/go-ray
Consult the Go documentation on Modules for more information on how to manage dependencies.