1
0
Fork 0
hscloud/proto/hswaw/checkinator.proto

19 lines
336 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package hswaw;
message LeasifierLeasesRequest {
};
message LeasifierLease {
string physical_address = 1;
string ip_address = 2;
};
message LeasifierLeasesResponse {
repeated LeasifierLease leases = 1;
};
service Leasifier {
rpc Leases(LeasifierLeasesRequest) returns (LeasifierLeasesResponse);
};