Remove the default add function
Some checks failed
Cargo Build & Test / Tests (pull_request) Successful in 11s
Cargo Build & Test / Test publish (pull_request) Successful in 9s
Cargo Build & Test / check-cargo-version (pull_request) Failing after 5s

This commit is contained in:
Jan Gleytenhoover 2024-08-20 21:43:09 +02:00
parent fd8f18de9a
commit 980cc2d42d

@ -1,18 +1,3 @@
pub mod router;
pub mod entities;
pub mod utilities;
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);
}
}