Files
2024-04-10 08:38:53 -07:00

19 lines
391 B
Go

package main
import (
"math/rand"
"time"
"github.com/pelican-dev/wings/cmd"
)
func main() {
// Since we make use of the math/rand package in the code, especially for generating
// non-cryptographically secure random strings we need to seed the RNG. Just make use
// of the current time for this.
rand.Seed(time.Now().UnixNano())
// Execute the main binary code.
cmd.Execute()
}