go run ./...
go build ./...To compare structs in tests - https://pkg.go.dev/github.com/google/go-cmp/cmp
err := TheThing()
if err != nil {
// Do something.
}
err = TheOtherThing() // no := but just = to avoid errors
if err != nil {
// Do something.
}go get github.com/sashabaranov/go-openai