Last active
May 16, 2019 08:57
-
-
Save kyriediculous/d53ac65ed69ad9e600f16a035ae1cc6d to your computer and use it in GitHub Desktop.
proto services
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service BlogService { | |
rpc CreateBlog(CreateBlogReq) returns (CreateBlogRes); | |
rpc ReadBlog(ReadBlogReq) returns (ReadBlogRes); | |
rpc UpdateBlog(UpdateBlogReq) returns (UpdateBlogRes); | |
rpc DeleteBlog(DeleteBlogReq) returns (DeleteBlogRes); | |
rpc ListBlogs(ListBlogReq) returns (stream ListBlogRes); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment