chore(scaffolder): make the build work with the new folder structure

This commit is contained in:
blam
2020-02-05 16:07:03 +01:00
parent fe2b02e70f
commit e1ddbe60e9
8 changed files with 74 additions and 62 deletions
+4 -3
View File
@@ -7,17 +7,18 @@ import "identity/v1/identity.proto";
option go_package = "scaffolderv1";
service Scaffolder {
rpc GetAllTemplates(Empty) returns (GetAllTemplatesResponse);
rpc GetAllTemplates(Empty) returns (GetAllTemplatesReply);
}
message Empty {}
message GetAllTemplatesResponse {
message GetAllTemplatesReply {
repeated Template templates = 1;
}
message Template {
string id = 1;
string name = 2;
spotify.backstage.identity.v1.User user = 3;
string description = 3;
spotify.backstage.identity.v1.User user = 4;
}