Add struct for rpunithm value in config

This commit is contained in:
jinsoul 2024-05-05 22:30:46 -05:00
parent 9c89301486
commit d699defa0b

View File

@ -4,3 +4,8 @@ pub struct Configuration {
pub service_key: u32,
pub coin_key: u32,
}
#[derive(Debug, Clone, Copy)]
pub struct DeviceConfiguration {
pub rpunithm: u32
}