1 Star 0 Fork 1

iThings/core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
debugGetTencentLogic.go 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-08-14 15:59 +08:00 . feat: 完善项目
package common
import (
"context"
"gitee.com/i-Things/core/service/apisvr/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)
type DebugGetTencentLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewDebugGetTencentLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DebugGetTencentLogic {
return &DebugGetTencentLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *DebugGetTencentLogic) DebugGetTencent() error {
// todo: add your logic here and delete this line
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/i-Things/core.git
git@gitee.com:i-Things/core.git
i-Things
core
core
v0.1.6

搜索帮助