master.go 179 B

12345678910
  1. package master
  2. import (
  3. "github.com/mhaya"
  4. )
  5. func Run(profileFilePath, nodeId string) {
  6. app := mhaya.Configure(profileFilePath, nodeId, false, mhaya.Cluster)
  7. app.Startup()
  8. }