blob: ee71dc57a0fb6b5ad2219a9b095c3e0072dc88e2 (
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
require 'google/protobuf'
Google::Protobuf::DescriptorPool.generated_pool.build do
add_file("ability.proto", :syntax => :proto3) do
add_message "authx.rpc.AllowRequest" do
optional :subject, :string, 1
optional :permission, :string, 2
optional :resource, :string, 3
end
add_message "authx.rpc.AllowReply" do
optional :result, :bool, 1
end
end
end
module Authx
module Rpc
AllowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("authx.rpc.AllowRequest").msgclass
AllowReply = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("authx.rpc.AllowReply").msgclass
end
end
|