espforge_lib/cli/model.rs
1pub struct ExampleConfig {
2 pub template_name: String,
3 pub project_name: String,
4 pub chip: String,
5}
6
7pub struct ExportResult {
8 pub project_name: String,
9 pub output_file: String,
10}
11
12pub struct ExportOptions {
13 pub example_name: String,
14 pub override_project_name: Option<String>,
15 pub override_platform: Option<String>,
16}