1 Star 0 Fork 2

zxl008/blog

forked from zxysilent/blog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 689 Bytes
一键复制 编辑 原始数据 按行查看 历史
zxysilent 提交于 2021-08-05 14:35 . [A] 关闭链接
package main
import (
"blog/conf"
"blog/model"
"blog/router"
"os"
"os/signal"
"syscall"
"github.com/zxysilent/logs"
)
// @Title Blog’s 接口文档
// @Version 1.0
// @Description token传递方式包括[get/post]token、[header]Authorization
// @Description /api/* 公共访问
// @Description /adm/* 必须传入 token
// @Host 127.0.0.1:8085
// @BasePath /
func main() {
logs.Info("app initializing")
conf.Init()
model.Init()
quit := make(chan os.Signal)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM, syscall.SIGKILL)
logs.Info("app running")
go router.RunApp()
<-quit
model.Close()
logs.Info("app quitted")
logs.Flush()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zxl_lucifer_008/blog.git
git@gitee.com:zxl_lucifer_008/blog.git
zxl_lucifer_008
blog
blog
master

搜索帮助