forked from JointCloud/pcm-coordinator
29 lines
663 B
Go
29 lines
663 B
Go
package core
|
|
|
|
import (
|
|
"context"
|
|
clientCore "gitlink.org.cn/JointCloud/pcm-coordinator/client"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
|
|
)
|
|
|
|
type PushResourceInfoLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewPushResourceInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PushResourceInfoLogic {
|
|
return &PushResourceInfoLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *PushResourceInfoLogic) PushResourceInfo(req *clientCore.PushResourceInfoReq) (resp *clientCore.PushResourceInfoResp, err error) {
|
|
|
|
return
|
|
}
|