37 Star 399 Fork 122

联犀/物联网iot模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
otaEvent.go 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 22:13 . feat: 更新mod
package otaEvent
import (
"context"
"gitee.com/unitedrhino/things/service/dgsvr/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)
type OtaEvent struct {
svcCtx *svc.ServiceContext
logx.Logger
ctx context.Context
}
func NewOtaEvent(svcCtx *svc.ServiceContext, ctx context.Context) *OtaEvent {
return &OtaEvent{
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
ctx: ctx,
}
}
func (o *OtaEvent) DeviceUpgradePush() error {
return nil
}
func (o *OtaEvent) JobDelayRun(jobID int64) error {
o.Info(jobID)
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/things.git
git@gitee.com:unitedrhino/things.git
unitedrhino
things
物联网iot模块
v1.0.5

搜索帮助