Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
package cmdio
type ErrorEvent struct {
Error string `json:"error"`
}
func (event *ErrorEvent) String() string {
return "Error: " + event.Error
func (event *ErrorEvent) IsInplaceSupported() bool {
return false