Documentation ¶
Index ¶
- func GrpcLogger(ctx context.Context, req any, info *grpc.UnaryServerInfo, ...) (resp any, err error)
- func HttpLogger(handler http.Handler) http.Handler
- func InvalidArgumentError(violations []*errdetails.BadRequest_FieldViolation) error
- type Metadata
- type ResponseRecorder
- type Server
- func (server *Server) CreateUser(ctx context.Context, req *pb.CreateUserRequest) (*pb.CreateUserResponse, error)
- func (server *Server) LoginUser(ctx context.Context, req *pb.LoginUserRequest) (*pb.LoginUserResponse, error)
- func (server *Server) UpdateUser(ctx context.Context, req *pb.UpdateUserRequest) (*pb.UpdateUserResponse, error)
- func (server *Server) VerifyEmail(ctx context.Context, req *pb.VerifyEmailRequest) (*pb.VerifyEmailResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GrpcLogger ¶
func GrpcLogger(ctx context.Context, req any, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler, ) (resp any, err error)
func InvalidArgumentError ¶
func InvalidArgumentError(violations []*errdetails.BadRequest_FieldViolation) error
Types ¶
type ResponseRecorder ¶
type ResponseRecorder struct { http.ResponseWriter StatusCode int Body []byte }
func (*ResponseRecorder) Write ¶
func (rec *ResponseRecorder) Write(body []byte) (int, error)
override Write
func (*ResponseRecorder) WriteHeader ¶
func (rec *ResponseRecorder) WriteHeader(statusCode int)
override WriteHeader to set statusCode and call original WriteHeader
type Server ¶
type Server struct { pb.UnimplementedLearnGoServer // contains filtered or unexported fields }
Server servers gRPC requests for my service.
func NewServer ¶
func NewServer(config util.Config, store db.Store, taskDistributor worker.TaskDistributor) (*Server, error)
NewServer creates a new gRPC server
func (*Server) CreateUser ¶
func (server *Server) CreateUser(ctx context.Context, req *pb.CreateUserRequest) (*pb.CreateUserResponse, error)
func (*Server) LoginUser ¶
func (server *Server) LoginUser(ctx context.Context, req *pb.LoginUserRequest) (*pb.LoginUserResponse, error)
func (*Server) UpdateUser ¶
func (server *Server) UpdateUser(ctx context.Context, req *pb.UpdateUserRequest) (*pb.UpdateUserResponse, error)
func (*Server) VerifyEmail ¶
func (server *Server) VerifyEmail(ctx context.Context, req *pb.VerifyEmailRequest) (*pb.VerifyEmailResponse, error)
Click to show internal directories.
Click to hide internal directories.