fleet/main.go
John Murphy 531535c168 Refactored database migrations to use goose (#515)
* Refactored database migrations to use goose
2016-11-19 01:02:51 +08:00

19 lines
269 B
Go

package main
import (
"math/rand"
"time"
_ "github.com/go-sql-driver/mysql"
"github.com/kolide/kolide-ose/cli"
_ "github.com/kolide/kolide-ose/server/datastore/mysql/migrations"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
func main() {
cli.Launch()
}