Skip to content

Commit 1a22d24

Browse files
authored
feat(store): add s3s and s3+tls to registered stores (#41)
seems like this is missing plumbing.
1 parent eae5186 commit 1a22d24

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/store/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ fn register_stores() -> HashMap<String, Factory> {
2121
m.insert("dir".into(), dir::make);
2222
m.insert("zdb".into(), zdb::make);
2323
m.insert("s3".into(), s3store::make);
24+
m.insert("s3s".into(), s3store::make);
25+
m.insert("s3s+tls".into(), s3store::make);
2426

2527
m
2628
}

0 commit comments

Comments
 (0)