diff options
author | Heyang Zhou <zhy20000919@hotmail.com> | 2023-03-22 12:13:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 12:13:24 +0800 |
commit | 92ebf4afe5d55135b3ba39616bcb77106c07c597 (patch) | |
tree | f79fe65811c7449f5b50c093852eceaad228d39f /runtime/lib.rs | |
parent | 8bcffff9dc517aa93dea2816b2a854f65d24eccc (diff) |
feat(ext/kv): key-value store (#18232)
This commit adds unstable "Deno.openKv()" API that allows to open
a key-value database at a specified path.
---------
Co-authored-by: Luca Casonato <hello@lcas.dev>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r-- | runtime/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs index f55833831..02d52cd5a 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -11,6 +11,7 @@ pub use deno_flash; pub use deno_fs; pub use deno_http; pub use deno_io; +pub use deno_kv; pub use deno_napi; pub use deno_net; pub use deno_node; |