init is called to initialize the package by the Go runtime prior to any other code being executed.
()
| 21 | // init is called to initialize the package by the |
| 22 | // Go runtime prior to any other code being executed. |
| 23 | func init() { |
| 24 | // Seed the random number generator. |
| 25 | rand.Seed(time.Now().Unix()) |
| 26 | } |
| 27 | |
| 28 | // main is the entry point for all Go programs. |
| 29 | func main() { |
nothing calls this directly
no outgoing calls
no test coverage detected