2 Star 4 Fork 5

联犀/中台模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
view.go 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 21:56 . feat: 更新mod
package main
import (
"flag"
"fmt"
"gitee.com/unitedrhino/share/utils"
"gitee.com/unitedrhino/core/service/viewsvr/internal/config"
"gitee.com/unitedrhino/core/service/viewsvr/internal/handler"
"gitee.com/unitedrhino/core/service/viewsvr/internal/svc"
"github.com/zeromicro/go-zero/rest"
)
func main() {
flag.Parse()
var c config.Config
utils.ConfMustLoad("etc/view.yaml", &c)
server := rest.MustNewServer(c.RestConf)
defer server.Stop()
ctx := svc.NewServiceContext(c)
handler.RegisterHandlers(server, ctx)
server.PrintRoutes()
fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port)
server.Start()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
中台模块
v1.0.3

搜索帮助