package
0.0.0-20220208130219-91bf133f7376
Repository: https://github.com/kubeapps/common.git
Documentation: pkg.go.dev
# Functions
NewDataResponse returns a new DataResponse.
NewDataResponseWithMeta returns a new DataResponse.
NewErrorResponse returns a new ErrorResponse.
# Structs
DataResponse describes a JSON response containing resource data:
{
data: {...}
}
If resource data is an array of objects, the data key will be an array:
{
data: [...]
}
*/.
ErrorResponse describes a JSON error response with the following body:
{
"code": 404,
"message": "not found"
}
*/.