Files
budget-backend/main.go
2022-10-20 10:36:29 +02:00

15 lines
148 B
Go

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