main.go 663 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5
package main

import (
	"fmt"
	"git.hilo.cn/hilo-common/resource/consul"
hujiebin's avatar
hujiebin committed
6
	"hilo-group/cron"
hujiebin's avatar
hujiebin committed
7
	"hilo-group/domain/service/event_s"
hujiebin's avatar
hujiebin committed
8 9 10 11
	"hilo-group/route"
)

const (
hujiebin's avatar
hujiebin committed
12
	PORT         = 9060
hujiebin's avatar
hujiebin committed
13 14 15 16 17
	RegisterName = "hiloGroup"
	RegisterTag  = "群组中心"
)

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