Files
lone-services/services/order/internal/logic/webAddressDefLogic.go
T
gjs c33fbdb422
CI / changes (push) Successful in 4s
CI / docker-bff (push) Successful in 3m21s
CI / docker-product (push) Successful in 3m39s
CI / docker-admin (push) Successful in 3m34s
CI / docker-user (push) Successful in 3m29s
CI / docker-ad (push) Successful in 3m29s
fix admin login log
2026-08-21 16:07:03 +08:00

31 lines
633 B
Go

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