31 lines
597 B
Go
31 lines
597 B
Go
package roleservicelogic
|
|
|
|
import (
|
|
"context"
|
|
|
|
"ark-permission/gen_result/pb/permission"
|
|
"ark-permission/internal/svc"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type PingLogic struct {
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
logx.Logger
|
|
}
|
|
|
|
func NewPingLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PingLogic {
|
|
return &PingLogic{
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
Logger: logx.WithContext(ctx),
|
|
}
|
|
}
|
|
|
|
func (l *PingLogic) Ping(in *permission.OKResp) (*permission.OKResp, error) {
|
|
// todo: add your logic here and delete this line
|
|
|
|
return &permission.OKResp{}, nil
|
|
}
|