1 Star 0 Fork 0

水告木南/Gin_Websocket_Chat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 426 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2024-07-07 04:55 . first commit
package main
import (
"fmt"
"websocket/config"
"websocket/internal/service"
"websocket/pkg/MySQL"
"websocket/route"
)
func main() {
err := config.LoadConfig("./config.json")
if err != nil {
panic(err)
}
_, err = MySQL.InitMySQL()
if err != nil {
panic(err)
}
go service.Start()
r := route.NewRouter()
address := fmt.Sprintf("%v:%v", config.AppConfig.Address, config.AppConfig.Port)
_ = r.Run(address)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/Aspirin-Byte/Gin_Websocket_Chat.git
[email protected]:Aspirin-Byte/Gin_Websocket_Chat.git
Aspirin-Byte
Gin_Websocket_Chat
Gin_Websocket_Chat
main

搜索帮助