fleet/main.go
2016-09-05 18:02:38 -04:00

17 lines
206 B
Go

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