endregion region Message implementation
| 106 | // region Message implementation |
| 107 | |
| 108 | type message struct { |
| 109 | code string |
| 110 | userMessage string |
| 111 | explanation string |
| 112 | labels Labels |
| 113 | } |
| 114 | |
| 115 | func (m *message) Code() string { |
| 116 | return m.code |
nothing calls this directly
no outgoing calls
no test coverage detected