cdglab/main.go
cdryzun 95847ff050
Some checks failed
Release / release (push) Failing after 5m5s
first commit
2023-12-23 18:36:28 +08:00

17 lines
168 B
Go

package main
import (
"math/rand"
"time"
"git.treesir.pub/cdryzun/cdglab/cmd"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
func main() {
cmd.Execute()
}