From 6144879f3061f298122b28318bcad0a7d4001d09 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Sun, 9 Jun 2024 09:28:35 -0400 Subject: [PATCH] Expose internal DynObjectStore (#11) --- object-store-internal/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object-store-internal/src/lib.rs b/object-store-internal/src/lib.rs index ec3e5e5..9639993 100644 --- a/object-store-internal/src/lib.rs +++ b/object-store-internal/src/lib.rs @@ -474,7 +474,7 @@ impl PyClientOptions { /// A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, /// Azure Blob Storage and local files. pub struct PyObjectStore { - inner: Arc, + pub inner: Arc, rt: Arc, root_url: String, options: Option>,