Files
micro-client-http/builder/proto/errors.pb.go
pugnack 24801750a7
Some checks failed
coverage / build (push) Successful in 2m19s
test / test (push) Failing after 17m15s
integrate request builder into HTTP client for googleapis support (#157)
2025-09-23 13:30:15 +03:00

16 lines
338 B
Go

package proto
import "google.golang.org/protobuf/encoding/protojson"
var marshaler = protojson.MarshalOptions{}
func (m *Test_Client_Call_DefaultError) Error() string {
buf, _ := marshaler.Marshal(m)
return string(buf)
}
func (m *Test_Client_Call_SpecialError) Error() string {
buf, _ := marshaler.Marshal(m)
return string(buf)
}