Commit 18674aab authored by Sebastien Merle's avatar Sebastien Merle
Browse files

Add first draft for TE service

parent ab2131ca
Loading
Loading
Loading
Loading

proto/te.proto

0 → 100644
+11 −0
Original line number Diff line number Diff line
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       ) {}
}