xref: /DADK/dadk-config/src/boot/dragonstub.rs (revision 285d70f1839433cfbd204fd89e46aa6aec08f02e)
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