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