()
| 14 | type BareError struct{ Code int } |
| 15 | |
| 16 | func (e *BareError) Error() string { return fmt.Sprintf("bare exit %d", e.Code) } |
| 17 | |
| 18 | // ErrBare builds the silent-exit signal with the given code. |
| 19 | func ErrBare(code int) *BareError { return &BareError{Code: code} } |
no outgoing calls