Newer
Older
grpcdemo / proto / grpcdemo.proto
@tundra tundra on 12 Feb 2017 381 bytes restructure and organize
// Protobuf Definitions For TundraWare Inc. grpc Demo

// Using Protobuf 3

syntax = "proto3";


// The date service

service HostDateTime {

  rpc GetDateTime (Null) returns (CurrentDateTime) {}
}

// Argument placeholder

message Null{
  string null = 1;
}


// The response message containing the current date and time

message CurrentDateTime {
  string currentdatetime = 1;
}