Net is a network writer used for logging.
| 10 | |
| 11 | // Net is a network writer used for logging. |
| 12 | type Net struct { |
| 13 | conn net.Conn |
| 14 | } |
| 15 | |
| 16 | // NewNet creates and returns a pointer to a new Net object along with any error that occurred. |
| 17 | func NewNet(network string, address string) (*Net, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected