mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
17 lines
165 B
Go
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()
|
||
|
}
|