init is called when the package is initialized. This code runs first.
()
| 56 | |
| 57 | // init is called when the package is initialized. This code runs first. |
| 58 | func init() { |
| 59 | // Seed the random number generator |
| 60 | rand.Seed(time.Now().Unix()) |
| 61 | } |
| 62 | |
| 63 | // main is the entry point for the application |
| 64 | func main() { |
nothing calls this directly
no outgoing calls
no test coverage detected