Skip to content

Commit

Permalink
feat(store): add s3s and s3+tls to registered stores (#41)
Browse files Browse the repository at this point in the history
seems like this is missing plumbing.
  • Loading branch information
steveej authored Mar 8, 2024
1 parent eae5186 commit 1a22d24
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ fn register_stores() -> HashMap<String, Factory> {
m.insert("dir".into(), dir::make);
m.insert("zdb".into(), zdb::make);
m.insert("s3".into(), s3store::make);
m.insert("s3s".into(), s3store::make);
m.insert("s3s+tls".into(), s3store::make);

m
}
Expand Down

0 comments on commit 1a22d24

Please sign in to comment.