mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-17 13:24:56 +00:00
15 lines
249 B
Protocol Buffer
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;
|
|
} |