call_server.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Code generated by goctl. DO NOT EDIT!
  2. // Source: call.proto
  3. package server
  4. import (
  5. "context"
  6. "call_center/call/rpc/internal/logic"
  7. "call_center/call/rpc/internal/svc"
  8. "call_center/call/rpc/pb"
  9. )
  10. type CallServer struct {
  11. svcCtx *svc.ServiceContext
  12. }
  13. func NewCallServer(svcCtx *svc.ServiceContext) *CallServer {
  14. return &CallServer{
  15. svcCtx: svcCtx,
  16. }
  17. }
  18. func (s *CallServer) ClientLogin(in *pb.ClientMsgReq, stream pb.Call_ClientLoginServer) error {
  19. l := logic.NewClientLoginLogic(stream.Context(), s.svcCtx)
  20. return l.ClientLogin(in, stream)
  21. }
  22. func (s *CallServer) ClientCall(ctx context.Context, in *pb.ClientMsgReq) (*pb.ClientMsgRes, error) {
  23. l := logic.NewClientCallLogic(ctx, s.svcCtx)
  24. return l.ClientCall(in)
  25. }
  26. func (s *CallServer) ServiceLogin(in *pb.ServiceMsgReq, stream pb.Call_ServiceLoginServer) error {
  27. l := logic.NewServiceLoginLogic(stream.Context(), s.svcCtx)
  28. return l.ServiceLogin(in, stream)
  29. }
  30. func (s *CallServer) ServiceCall(ctx context.Context, in *pb.ServiceMsgReq) (*pb.ServiceMsgRes, error) {
  31. l := logic.NewServiceCallLogic(ctx, s.svcCtx)
  32. return l.ServiceCall(in)
  33. }