chore: init sys crate

This commit is contained in:
theo 2024-08-03 17:23:23 +02:00 committed by Florian Briand
parent 345190dfeb
commit 3712667a04
Signed by: florian_briand
GPG Key ID: CC981B9E6B98E70B
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,6 @@
[package]
name = "services-sesam-vitale-sys"
version = "0.1.0"
edition = "2021"
[dependencies]

View File

@ -0,0 +1,14 @@
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);
}
}