Add generated files for Node.js wrapper module

Generated using @napi-rs/cli's "napi new".
This commit is contained in:
Oliver Hamlet
2025-04-22 18:47:56 +01:00
parent d648011e51
commit b19b4dfb6d
20 changed files with 2338 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
#![deny(clippy::all)]
#[macro_use]
extern crate napi_derive;
#[napi]
pub fn sum(a: i32, b: i32) -> i32 {
a + b
}