fix shorturl example code (#35)
This commit is contained in:
@@ -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),
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user