1 Star 0 Fork 195

Jason/物联大师

forked from 杰神/物联大师 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
杰神 提交于 2024-02-15 11:23 . 目录整理
package master
import (
"github.com/zgwit/iot-master/v4/api"
"github.com/zgwit/iot-master/v4/broker"
_ "github.com/zgwit/iot-master/v4/docs"
"github.com/zgwit/iot-master/v4/internal"
"github.com/zgwit/iot-master/v4/pkg/config"
"github.com/zgwit/iot-master/v4/pkg/log"
"github.com/zgwit/iot-master/v4/web"
)
// @title 物联大师接口文档
// @version 4.0 版本
// @description API文档
// @BasePath /api/
// @InstanceName master
// @query.collection.format multi
func main() {}
func Startup() error {
//加载配置文件
err := config.Load()
if err != nil {
log.Error(err)
_ = config.Store()
}
//加载主程序
err = internal.Open()
if err != nil {
return err
}
web.Start()
//注册前端接口
api.RegisterRoutes(web.Engine.Group("/api"))
//注册接口文档
web.RegisterSwaggerDocs(&web.Engine.RouterGroup, "master")
//监听Websocket
web.Engine.GET("/mqtt", broker.GinBridge)
//附件
//web.Engine.Static("/static", "static")
web.Engine.Static("/attach", "attach")
//前端 移入子工程 github.com/iot-master-contrib/webui
//web.Static.Put("", http.FS(wwwFiles), "www", "index.html")
return nil
}
func Shutdown() error {
internal.Close()
//只关闭Web就行了,其他通过defer关闭
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/er_eggs/iot-master.git
git@gitee.com:er_eggs/iot-master.git
er_eggs
iot-master
物联大师
master

搜索帮助