pcm-coordinator/api/internal/logic/ai/stopnotebooklogic.go

31 lines
672 B
Go

package ai
import (
"context"
"gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/svc"
"gitlink.org.cn/jcce-pcm/pcm-coordinator/api/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type StopNotebookLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewStopNotebookLogic(ctx context.Context, svcCtx *svc.ServiceContext) *StopNotebookLogic {
return &StopNotebookLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *StopNotebookLogic) StopNotebook(req *types.StopNotebookReq) (resp *types.StopNotebookResp, err error) {
// todo: add your logic here and delete this line
return
}