fleet/main.go

17 lines
165 B
Go
Raw Normal View History

package main
import (
"math/rand"
"time"
"github.com/kolide/kolide-ose/cli"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
func main() {
cli.Launch()
}