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