mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
531535c168
* Refactored database migrations to use goose
19 lines
269 B
Go
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()
|
|
}
|