Using go-genai with googleapis.com

Go integration

✓ Official SDK
Install
go get github.com/googleapis/go-genai
Quick start
import "go-genai"

// Initialize client
client := go-genai.NewClient("YOUR_ACCESS_TOKEN")
Lists all the debuggees that the user has access to.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://clouddebugger.googleapis.com/v2/debugger/debuggees
Lists all breakpoints for the debuggee.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://clouddebugger.googleapis.com/v2/debugger/debuggees/{debuggeeId}/breakpoints
Returns the list of all active breakpoints for the debuggee. The breakpoint s…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://clouddebugger.googleapis.com/v2/controller/debuggees/{debuggeeId}/breakpoints
SDK on GitHub 📄 API Docs
SDK
go-genai
Go
API
googleapis.com
googleapis.com:clouddebugger
At a glance
Language Go
Endpoints8
Base URLhttps://clouddebugger.googleapis.com
✓ Official