diff --git a/proto/te.proto b/proto/te.proto new file mode 100644 index 0000000000000000000000000000000000000000..a0233fab09a024e217a19b46681562db0c0541e1 --- /dev/null +++ b/proto/te.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; +package te; + +import "context.proto"; +import "service.proto"; + +service TEService { + rpc RequestLSP(service.Service ) returns (service.ServiceState) {} + rpc UpdateLSP (service.ServiceId) returns (service.ServiceState) {} + rpc DeleteLSP (service.ServiceId) returns (context.Empty ) {} +}