package logic import ( "context" "lone-services/rpc/order/pb" "lone-services/services/order/internal/svc" "github.com/zeromicro/go-zero/core/logx" ) type WebAddressEditLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewWebAddressEditLogic(ctx context.Context, svcCtx *svc.ServiceContext) *WebAddressEditLogic { return &WebAddressEditLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } func (l *WebAddressEditLogic) WebAddressEdit(in *order.EditAddressRequest) (*order.Response, error) { // todo: add your logic here and delete this line return &order.Response{}, nil }