When I use protoc --openapi_out=docs -Iidl -Ithird_party idl/hello/hello.proto to generate openapi.yaml,
How to remove the prefix 'UserService_' of operationId?
Does it have a global strategy param to remove it?
post:
tags:
- UserService
operationId: UserService_CreateUser
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateUserReq'
required: true
Clould the generator add param to remove 'XXXService_' prefix?
When I use
protoc --openapi_out=docs -Iidl -Ithird_party idl/hello/hello.prototo generate openapi.yaml,How to remove the prefix 'UserService_' of operationId?
Does it have a global strategy param to remove it?
Clould the generator add param to remove 'XXXService_' prefix?