main.go 561 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package main

import (
	"fmt"
	"git.hilo.cn/hilo-common/resource/consul"
	"hilo-group/route"
)

const (
	PORT         = 9050
	RegisterName = "hiloGroup"
	RegisterTag  = "群组中心"
)

func main() {
	//cron.Init()                     // 开启定时任务
	//event_s.EventInit()             // 注册事件(内部事件+mysql拟kafka)
	r := route.InitRouter()                                  // 注册路由
	consul.RegisterToConsul(PORT, RegisterName, RegisterTag) // 服务注册
	r.Run(fmt.Sprintf(":%d", PORT))                          // 启动服务
}