init is called prior to main.
()
| 10 | |
| 11 | // init is called prior to main. |
| 12 | func init() { |
| 13 | // Change the device for logging to stdout. |
| 14 | log.SetOutput(os.Stdout) |
| 15 | } |
| 16 | |
| 17 | // main is the entry point for the program. |
| 18 | func main() { |
nothing calls this directly
no outgoing calls
no test coverage detected