multi-plugin structure

This commit is contained in:
Haze Weathers 2025-09-16 14:15:12 -06:00
parent fb3ba5d291
commit ac98cbe6c7
9 changed files with 64 additions and 25 deletions

View file

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