endregion region Message implementation
| 42 | // region Message implementation |
| 43 | |
| 44 | type message struct { |
| 45 | code string |
| 46 | userMessage string |
| 47 | explanation string |
| 48 | labels message2.Labels |
| 49 | reason ssh.RejectionReason |
| 50 | } |
| 51 | |
| 52 | func (m *message) Reason() ssh.RejectionReason { |
| 53 | return m.reason |
nothing calls this directly
no outgoing calls
no test coverage detected