Skip to content

Commit 91b9464

Browse files
committed
...
1 parent 5ffd5fd commit 91b9464

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modeling-cmds/src/ok_response.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -323,21 +323,21 @@ define_ok_modeling_cmd_response_enum! {
323323
pub files: Vec<ExportFile>,
324324
}
325325

326-
/// The response from the `Cache` endpoint.
326+
/// The response from the `Export` endpoint.
327327
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
328328
pub struct Export {
329+
/// The files that were exported.
330+
pub files: Vec<ExportFile>,
329331
}
330332

331-
/// The response from the `LoadCache` endpoint.
333+
/// The response from the `Cache` endpoint.
332334
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
333-
pub struct LoadCache {
335+
pub struct Cache {
334336
}
335337

336-
/// The response from the `Export` endpoint.
338+
/// The response from the `LoadCache` endpoint.
337339
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
338-
pub struct Export {
339-
/// The files that were exported.
340-
pub files: Vec<ExportFile>,
340+
pub struct LoadCache {
341341
}
342342

343343
/// The response from the `SelectWithPoint` command.

0 commit comments

Comments
 (0)