Run updated code generation on the updated sample

This commit is contained in:
darronschall 2022-08-22 11:00:22 -04:00
Родитель e1cdd74e8f
Коммит 86cc035618
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B1F1B87D782DD365
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -6,11 +6,11 @@ module Example
module HelloWorld
class HelloWorldService < ::Twirp::Service
package 'example.hello_world'
service 'HelloWorld'
service 'HelloWorldService'
rpc :Hello, HelloRequest, HelloResponse, :ruby_method => :hello
end
class HelloWorldClient < ::Twirp::Client
class HelloWorldServiceClient < ::Twirp::Client
client_for HelloWorldService
end
end