Skip to content

Commit cd0ff40

Browse files
committed
persist: make Location usable from outside the crate
1 parent 36b165f commit cd0ff40

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/persist-client/src/lib.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,11 @@ pub(crate) mod r#impl {
8484
/// processes. This location can contain any number of persist shards.
8585
#[derive(Debug, Clone, Deserialize, Serialize)]
8686
pub struct Location {
87-
blob_uri: String,
88-
consensus_uri: String,
87+
/// Uri string that identifies the blob store.
88+
pub blob_uri: String,
89+
90+
/// Uri string that identifies the consensus system.
91+
pub consensus_uri: String,
8992
}
9093

9194
impl Location {

0 commit comments

Comments
 (0)