1 Star 0 Fork 192

朱慧健/物联大师

forked from 杰神/物联大师 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
杰神 提交于 2023-12-18 03:44 . 一次大改
package master
import (
"embed"
"github.com/zgwit/iot-master/v4/broker"
"github.com/zgwit/iot-master/v4/config"
_ "github.com/zgwit/iot-master/v4/docs"
"github.com/zgwit/iot-master/v4/internal"
"github.com/zgwit/iot-master/v4/internal/api"
"github.com/zgwit/iot-master/v4/pkg/log"
"github.com/zgwit/iot-master/v4/pkg/web"
"net/http"
)
//go:embed all:www
var wwwFiles embed.FS
// @title 物联大师接口文档
// @version 3.2 版本
// @description API文档
// @BasePath /api/
// @InstanceName master
// @query.collection.format multi
func main() {}
func Startup(engine *web.Engine) error {
err := config.Load()
if err != nil {
log.Error(err)
_ = config.Store()
}
//加载主程序
err = internal.Open()
if err != nil {
return err
}
//defer internal.Close()
engine.Static("/static", "static")
//注册前端接口
api.RegisterRoutes(engine.Group("/api"))
//注册接口文档
web.RegisterSwaggerDocs(&engine.RouterGroup, "master")
//附件
engine.Static("/attach", "attach")
//监听Websocket
engine.GET("/mqtt", broker.GinBridge)
//监听插件
//mqtt.Subscribe[types.App]("master/register", func(topic string, a *types.App) {
// log.Info("app register ", a.Id, " ", a.Name, " ", a.Type, " ", a.Address)
// plugin.Applications.Store(a.Id, a)
//
// //插件反向代理
// engine.Any("/app/"+a.Id+"/*path", func(ctx *gin.Context) {
// rp, err := web.CreateReverseProxy(a.Type, a.Address)
// if err != nil {
// _ = ctx.Error(err)
// return
// }
// rp.ServeHTTP(ctx.Writer, ctx.Request)
// ctx.Abort()
// })
//})
return nil
}
func Static(fs *web.FileSystem) {
//前端静态文件
fs.Put("", http.FS(wwwFiles), "www", "index.html")
}
func Shutdown() error {
internal.Close()
//只关闭Web就行了,其他通过defer关闭
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zhu-huijian/iot-master.git
git@gitee.com:zhu-huijian/iot-master.git
zhu-huijian
iot-master
物联大师
master

搜索帮助