feat: sale manager
This commit is contained in:
@@ -32,3 +32,13 @@ func (s *ChoreServer) Test(ctx context.Context, in *chore.TestReq) (*chore.Respo
|
||||
l := logic.NewTestLogic(ctx, s.svcCtx)
|
||||
return l.Test(in)
|
||||
}
|
||||
|
||||
func (s *ChoreServer) DecryptMobile(ctx context.Context, in *chore.DecryptMobileReq) (*chore.Response, error) {
|
||||
l := logic.NewDecryptMobileLogic(ctx, s.svcCtx)
|
||||
return l.DecryptMobile(in)
|
||||
}
|
||||
|
||||
func (s *ChoreServer) Regions(ctx context.Context, in *chore.RegionsReq) (*chore.Response, error) {
|
||||
l := logic.NewRegionsLogic(ctx, s.svcCtx)
|
||||
return l.Regions(in)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user