add logging

This commit is contained in:
2022-11-21 14:09:03 +01:00
parent dce155979e
commit af875e4688
14 changed files with 244 additions and 23 deletions

View File

@@ -1,16 +1 @@
pub mod service_register;
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}