fix: 修改引用路径

This commit is contained in:
shiro.lee
2024-06-24 23:41:54 +08:00
parent 9161b8fffe
commit 069c5377be
2 changed files with 4 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ fn main() -> Result<()> {
async fn run(opt: config::Opt) -> Result<()> {
// Setup S3 service
let service = {
let mut b = S3ServiceBuilder::new(storage::simple_fs::SimpleFS {});
let mut b = S3ServiceBuilder::new(storage::SimpleFS {});
// Enable authentication
if let (Some(ak), Some(sk)) = (opt.access_key, opt.secret_key) {

View File

@@ -1 +1,3 @@
pub mod simple_fs;
mod simple_fs;
pub use simple_fs::SimpleFS;