diff options
author | 2023-10-09 01:11:24 -0700 | |
---|---|---|
committer | 2023-10-13 18:08:23 -0700 | |
commit | 71ddfcf7c1980e2f99b96e844f91e1e7ca02248f (patch) | |
tree | 4ac3f48efc09254f2ec358d75ffe2f144dbc9449 /src/js/out/InternalModuleRegistry+createInternalModuleById.h | |
parent | 3809d8f5a08e8e254cc4ba3c1d3adf70bdd0a3e9 (diff) | |
download | bun-71ddfcf7c1980e2f99b96e844f91e1e7ca02248f.tar.gz bun-71ddfcf7c1980e2f99b96e844f91e1e7ca02248f.tar.zst bun-71ddfcf7c1980e2f99b96e844f91e1e7ca02248f.zip |
Introduce `bun:sql`
Diffstat (limited to 'src/js/out/InternalModuleRegistry+createInternalModuleById.h')
-rw-r--r-- | src/js/out/InternalModuleRegistry+createInternalModuleById.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/js/out/InternalModuleRegistry+createInternalModuleById.h b/src/js/out/InternalModuleRegistry+createInternalModuleById.h index 9521f43a7..2702c02bf 100644 --- a/src/js/out/InternalModuleRegistry+createInternalModuleById.h +++ b/src/js/out/InternalModuleRegistry+createInternalModuleById.h @@ -6,6 +6,9 @@ JSValue InternalModuleRegistry::createInternalModuleById(JSGlobalObject* globalO case Field::BunFFI: { INTERNAL_MODULE_REGISTRY_GENERATE(globalObject, vm, "bun:ffi"_s, "bun/ffi.js"_s, InternalModuleRegistryConstants::BunFFICode, "builtin://bun/ffi"_s); } + case Field::BunSql: { + INTERNAL_MODULE_REGISTRY_GENERATE(globalObject, vm, "bun:sql"_s, "bun/sql.js"_s, InternalModuleRegistryConstants::BunSqlCode, "builtin://bun/sql"_s); + } case Field::BunSqlite: { INTERNAL_MODULE_REGISTRY_GENERATE(globalObject, vm, "bun:sqlite"_s, "bun/sqlite.js"_s, InternalModuleRegistryConstants::BunSqliteCode, "builtin://bun/sqlite"_s); } |