You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The protobuf specs allow to not specify a package. Your generator assumes that a package is always defined.
e.g. there is this line of code in the grpc web generator serviceName: "${fileDesc.package}.${serviceDesc.name}", No matter the package it always puts a dot in front of the service name. This doen't work when dealing with an empty package name as the service name would be .ExampleService.
The text was updated successfully, but these errors were encountered:
The protobuf specs allow to not specify a package. Your generator assumes that a package is always defined.
e.g. there is this line of code in the grpc web generator
serviceName: "${fileDesc.package}.${serviceDesc.name}",
No matter the package it always puts a dot in front of the service name. This doen't work when dealing with an empty package name as the service name would be.ExampleService
.The text was updated successfully, but these errors were encountered: