From 2c0b0e45b72ef1b5d7fa95e1e110d07ddbc720f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jimmy=20W=C3=A4rting?= Date: Mon, 5 Jul 2021 15:34:37 +0200 Subject: refactor: asynchronous blob backing store (#10969) Co-authored-by: Luca Casonato --- runtime/examples/hello_runtime.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/examples/hello_runtime.rs') diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs index af2f64892..047b8991b 100644 --- a/runtime/examples/hello_runtime.rs +++ b/runtime/examples/hello_runtime.rs @@ -3,7 +3,7 @@ use deno_core::error::AnyError; use deno_core::FsModuleLoader; use deno_runtime::deno_broadcast_channel::InMemoryBroadcastChannel; -use deno_runtime::deno_web::BlobUrlStore; +use deno_runtime::deno_web::BlobStore; use deno_runtime::permissions::Permissions; use deno_runtime::worker::MainWorker; use deno_runtime::worker::WorkerOptions; @@ -41,7 +41,7 @@ async fn main() -> Result<(), AnyError> { get_error_class_fn: Some(&get_error_class_name), location: None, origin_storage_dir: None, - blob_url_store: BlobUrlStore::default(), + blob_store: BlobStore::default(), broadcast_channel: InMemoryBroadcastChannel::default(), }; -- cgit v1.2.3