cloudfoundry/cf-k8s-controllers

View on GitHub
api/presenter/error.go

Summary

Maintainability
A
0 mins
Test Coverage
package presenter

type ErrorsResponse struct {
    Errors []PresentedError `json:"errors"`
}

type PresentedError struct {
    Detail string `json:"detail"`
    Title  string `json:"title"`
    Code   int    `json:"code"`
}