diff options
author | snek <the@snek.dev> | 2024-06-10 09:20:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-10 16:20:44 +0000 |
commit | e3b2ee183bc7497ec0432bc764678f5eda6495a7 (patch) | |
tree | 7a5fa0208ef56cb83fa6bae9bad0bc89334ed533 /cli/napi/mod.rs | |
parent | 7c5dbd5d54770dba5e56442b633e9597403ef5da (diff) |
fix: Rewrite Node-API (#24101)
Phase 1 node-api rewrite
Diffstat (limited to 'cli/napi/mod.rs')
-rw-r--r-- | cli/napi/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/napi/mod.rs b/cli/napi/mod.rs index 697ec06e3..122d2ff06 100644 --- a/cli/napi/mod.rs +++ b/cli/napi/mod.rs @@ -15,8 +15,6 @@ //! 2. Add the function's identifier to this JSON list. //! 3. Finally, run `tools/napi/generate_symbols_list.js` to update `cli/napi/generated_symbol_exports_list_*.def`. -pub mod r#async; -pub mod env; pub mod js_native_api; -pub mod threadsafe_functions; +pub mod node_api; pub mod util; |