separate workflow_template.proto

This commit is contained in:
rushtehrani
2019-12-09 19:26:14 -08:00
parent 66bcecb2fd
commit 0996aa830d
5 changed files with 141 additions and 85 deletions

View File

@@ -3,6 +3,7 @@ syntax = "proto3";
package api;
import "google/api/annotations.proto";
import "workflow_template.proto";
service WorkflowService {
// Creates a Workflow
@@ -32,10 +33,3 @@ message Parameter {
string name = 1;
string value = 2;
}
message WorkflowTemplate {
string uuid = 1;
string name = 2;
string manifest = 4;
}