xref: /DADK/dadk-config/src/boot/dragonstub.rs (revision c6f35e8aa5fda2a3004763828fb91c7762df6087)
1 use serde::Deserialize;
2 
3 #[derive(Debug, Clone, Deserialize)]
4 pub struct DragonStubConfig {
5     /// The path to the source code of the DragonStub project.
6     #[serde(rename = "src-path")]
7     pub src_path: String,
8 }
9