Skip to content

Commit

Permalink
Add remove material service (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkrull-ansys authored Jun 24, 2024
1 parent 3d04d49 commit ade6101
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ansys/api/additive/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.0-dev5
1.7.0-dev6
6 changes: 6 additions & 0 deletions ansys/api/additive/v0/additive_materials.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ service MaterialsService {

rpc AddMaterial(AddMaterialRequest) returns (AddMaterialResponse);

rpc RemoveMaterial(RemoveMaterialRequest) returns (google.protobuf.Empty);

rpc GetMaterialsList (google.protobuf.Empty) returns (GetMaterialsListResponse);

rpc GetMaterial (GetMaterialRequest) returns (AdditiveMaterial);
Expand All @@ -32,6 +34,10 @@ message AddMaterialResponse {
}
}

message RemoveMaterialRequest {
string name = 1;
}

message GetMaterialRequest {
string name = 1;
}
Expand Down

0 comments on commit ade6101

Please sign in to comment.