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
I want to generate code that goes into a namespaced package (eg: my_service.client).
My first instinct is to specify this with --package-name, eg:
--package-name my_service.client
But this builds a client library where the top-level directory of the package is literally my_service.client, when it should actually be in my_service/client.
I want to generate code that goes into a namespaced package (eg:
my_service.client).My first instinct is to specify this with
--package-name, eg:But this builds a client library where the top-level directory of the package is literally
my_service.client, when it should actually be inmy_service/client.Workaround