fleet/main.go
Mike Arpaia aacd1d6b9c Removing underscored import of config from main (#200)
This should no longer be necessary.
2016-09-20 06:48:45 -04:00

17 lines
165 B
Go

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