mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
aacd1d6b9c
This should no longer be necessary.
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()
|
|
}
|