-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
executable file
·51 lines (44 loc) · 1.15 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package main
import (
"dcr-gin/app/global"
"dcr-gin/app/initialize"
"dcr-gin/app/job"
"fmt"
"github.com/gookit/goutil/dump"
"strconv"
// 初始化数据库连接及日志文件
_ "dcr-gin/app/common"
// 数据模型中init方法的执行
_ "dcr-gin/app/model"
// 文档
)
// @title 权限系统API文档
// @version 1.0
// @description 使用gin+mysql实现权限系统的api接口
// @host 127.0.0.1:9090/api/v1
// @BasePath
func main() {
// 1.初始化配置
initialize.InitConfig()
// 初始化自定义校验器
initialize.InitValidate()
//2.初始化路由
router := initialize.Routers()
//注册redis
initialize.Redis()
// 获取端口号
PORT := strconv.Itoa(global.ServerConfig.Port)
fmt.Println(PORT + "当前端口")
// swagger访问地址:localhost:5555/swagger/index.html
dump.P("http://localhost:5555/swagger/index.html")
global.Logger.Sugar().Infof("服务已经启动:localhost:%s", PORT)
//定时轮询上传信息数据
//TicketUpload()
ch := make(chan int, 1)
go job.Run(ch)
// 启动服务
err := router.Run(fmt.Sprintf(":%s", PORT))
if err != nil {
global.Logger.Sugar().Panic("服务启动失败:%s", err.Error())
}
}