1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Add basic auth support to get Cardlife working in non-offline mode

This commit is contained in:
NGnius (Graham)
2025-01-25 17:40:47 -05:00
commit fe2816e9d3
13 changed files with 3714 additions and 0 deletions

14
src/lib.rs Normal file
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);
}
}