Task implements the Worker interface.
()
| 26 | |
| 27 | // Task implements the Worker interface. |
| 28 | func (m *namePrinter) Task() { |
| 29 | log.Println(m.name) |
| 30 | time.Sleep(time.Second) |
| 31 | } |
| 32 | |
| 33 | // main is the entry point for all Go programs. |
| 34 | func main() { |
nothing calls this directly
no outgoing calls
no test coverage detected