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