syntax = "proto3"; package gitnow.v1; message Repositories { repeated Repository repositories = 1; } message Repository { string provider = 1; string owner = 2; string repo_name= 3; string ssh_url = 4; }