Server implementation.
| 8 | |
| 9 | // Server implementation. |
| 10 | type Server struct { |
| 11 | host string |
| 12 | // PRETEND THERE ARE MORE FIELDS. |
| 13 | } |
| 14 | |
| 15 | // NewServer returns just a concrete pointer of type Server |
| 16 | func NewServer(host string) *Server { |
nothing calls this directly
no outgoing calls
no test coverage detected