Skip to content

Avoceous/gRPC-server-side-streaming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gRPC-server-side-streaming

Initiates Protobuf specification for the Repo service

Compiled by @avoceous

  • // server-streaming/service/repositories.proto
  • import "users.proto";
  • syntax = "proto3";
  • option go_package = "github.com/username/server-streaming/service",
  • service Repo { rpc GetRepos (RepoGetRequest) returns (stream RepoGerReply) {} }
  • mesage RepoGetRequest { string id = 2; string creator_id - 1; }
  • message Repository { string id = 1; string name = 2; string url = 3; User owner = 4; }
  • message RepoGetReply { Repository repo = 1; }
  • About

    Initiates Protobuf specification for the Repo service

    Resources

    License

    Stars

    Watchers

    Forks

    Releases

    No releases published

    Packages

    No packages published

    Languages