Files
budget-backend/main.go
kratisto a9bca767a9
Some checks failed
golangci-lint / lint (push) Failing after 1m20s
Test / test (push) Failing after 2m15s
chore: migrate to gitea
2026-01-27 00:40:46 +01:00

16 lines
196 B
Go

package main
import (
"math/rand"
"time"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/cmd"
)
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
func main() {
cmd.Execute()
}