blob: a6c3b1751db014208ce0c10ccd985d0ca2f68bda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
# Source: ability.proto for package 'authx.rpc'
require 'grpc'
require 'ability_pb'
module Authx
module Rpc
module Ability
class Service
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
self.service_name = 'authx.rpc.Ability'
rpc :Allowed, ::Authx::Rpc::AllowRequest, ::Authx::Rpc::AllowReply
end
Stub = Service.rpc_stub_class
end
end
end
|