package main import ( "math/rand" "nos-comptes/cmd" "time" ) func init() { rand.Seed(time.Now().UTC().UnixNano()) } func main() { cmd.Execute() }