fix shorturl example code (#35)

master
Leonard Wang 4 years ago committed by GitHub
parent 33eb2936e8
commit 1e85f74fd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,12 +10,14 @@ import (
) )
type ExpandLogic struct { type ExpandLogic struct {
ctx context.Context svcCtx *svc.ServiceContext
ctx context.Context
logx.Logger logx.Logger
} }
func NewExpandLogic(ctx context.Context, svcCtx *svc.ServiceContext) ExpandLogic { func NewExpandLogic(ctx context.Context, svcCtx *svc.ServiceContext) ExpandLogic {
return ExpandLogic{ return ExpandLogic{
svcCtx: svcCtx,
ctx: ctx, ctx: ctx,
Logger: logx.WithContext(ctx), Logger: logx.WithContext(ctx),
} }

@ -10,12 +10,14 @@ import (
) )
type ShortenLogic struct { type ShortenLogic struct {
ctx context.Context svcCtx *svc.ServiceContext
ctx context.Context
logx.Logger logx.Logger
} }
func NewShortenLogic(ctx context.Context, svcCtx *svc.ServiceContext) ShortenLogic { func NewShortenLogic(ctx context.Context, svcCtx *svc.ServiceContext) ShortenLogic {
return ShortenLogic{ return ShortenLogic{
svcCtx: svcCtx,
ctx: ctx, ctx: ctx,
Logger: logx.WithContext(ctx), Logger: logx.WithContext(ctx),
} }

Loading…
Cancel
Save