Files
micro-client-http/error.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

13 lines
235 B
Go

package http
import "fmt"
// Error is used when items in the error map do not implement the error interface and need to be wrapped.
type Error struct {
err any
}
func (e *Error) Error() string {
return fmt.Sprintf("%+v", e.err)
}