Files
full/module/social/feed/proto/timeline.proto

22 lines
538 B
Protocol Buffer

syntax = "proto3";
package feed;
option go_package = "bsm/full/module/social/feed/pb;feed";
import "protobuf/blocks.proto";
// 实时动态
service Timeline{
// 推荐
rpc Recommend (blocks.FetchRequest) returns (blocks.FeedPostListReply){};
// 好友动态
rpc Friend (blocks.FetchRequest) returns (blocks.FeedPostListReply){};
// 关注的动态
rpc Follow (blocks.FetchRequest) returns (blocks.FeedPostListReply){};
// 热门
rpc Hot (blocks.FetchRequest) returns (blocks.FeedPostListReply){};
}