mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
16 lines
165 B
Go
16 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()
|
|
}
|