Files
services/blog/proto/blog.proto
2020-11-03 14:14:00 +01:00

15 lines
249 B
Protocol Buffer

syntax = "proto3";
package blog;
import "github.com/micro/services/blog/posts/proto/posts.proto";
service Blog {
rpc Latest(LatestRequest) returns (LatestResponse) {}
}
message LatestRequest {}
message LatestResponse{
posts.Post latest = 1;
}