mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Meghan Denny <meghan@bun.sh> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: pfg <pfg@pfg.pw> Co-authored-by: pfgithub <6010774+pfgithub@users.noreply.github.com> Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
18 lines
532 B
C++
18 lines
532 B
C++
#include <node.h>
|
|
|
|
extern "C" {
|
|
static node::node_module _module = {
|
|
137, // nm_version (Node.js 24.3.0)
|
|
0, // nm_flags
|
|
nullptr, // nm_dso_handle
|
|
"no_entrypoint.cpp", // nm_filename
|
|
nullptr, // nm_register_func
|
|
nullptr, // nm_context_register_func
|
|
"no_entrypoint", // nm_modname
|
|
nullptr, // nm_priv
|
|
nullptr, // nm_link
|
|
};
|
|
|
|
NODE_C_CTOR(_register_no_entrypoint) { node_module_register(&_module); }
|
|
}
|