Skip to content

Commit 741dd32

Browse files
author
gserena
committed
cleanup:
1 parent e1adb34 commit 741dd32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modeling-cmds/src/ok_response.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ define_ok_modeling_cmd_response_enum! {
1919
base64::Base64Data,
2020
id::ModelingCmdId,
2121
length_unit::LengthUnit,
22-
shared::{CurveType, EntityType, ExportFile, ExtrusionFaceCapType, PathCommand, Point2d, Point3d},
22+
shared::{CurveType, EntityType, ExportFile, ExtrusionFaceCapType, FaceEdgeInfo, PathCommand, Point2d, Point3d},
2323
units,
2424
};
2525

@@ -804,7 +804,7 @@ define_ok_modeling_cmd_response_enum! {
804804
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
805805
pub struct EntityMirror {
806806
/// The UUIDs of the entities that were created.
807-
pub entity_ids: Vec<Uuid>
807+
pub entity_ids: Vec<Uuid>,
808808
/// The Face and Edge Ids of the mirrored entities.
809809
pub face_edge_ids: Vec<FaceEdgeInfo>,
810810
}
@@ -813,7 +813,7 @@ define_ok_modeling_cmd_response_enum! {
813813
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
814814
pub struct EntityMirrorAcrossEdge {
815815
/// The UUIDs of the entities that were created.
816-
pub entity_ids: Vec<Uuid>
816+
pub entity_ids: Vec<Uuid>,
817817
/// The Face and Edge Ids of the mirrored entities.
818818
pub face_edge_ids: Vec<FaceEdgeInfo>,
819819
}

0 commit comments

Comments
 (0)