A Message represents a routing message.
| 8 | |
| 9 | // A Message represents a routing message. |
| 10 | type Message interface { |
| 11 | // Sys returns operating system-specific information. |
| 12 | Sys() []Sys |
| 13 | } |
| 14 | |
| 15 | // A Sys reprensents operating system-specific information. |
| 16 | type Sys interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…