Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
15 lines
217 B
Protocol Buffer
15 lines
217 B
Protocol Buffer
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;
|
|
}
|