Skip to content

Commit

Permalink
remi-fs: Resolve example build compilation
Browse files Browse the repository at this point in the history
Follow-up to 47e4136.
  • Loading branch information
spotlightishere committed Nov 30, 2024
1 parent 468094e commit f8a917c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fs/examples/filesystem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
// tokio = { version = "*", features = ["full"] }

use remi::{Blob, StorageService as _, UploadRequest};
use remi_fs::{Config, StorageService};
use remi_fs::{StorageConfig, StorageService};
use std::{io, path::PathBuf};
use tracing_subscriber::prelude::*;

Expand All @@ -38,7 +38,7 @@ async fn main() -> Result<(), io::Error> {
.with(tracing_subscriber::fmt::layer())
.init();

let config = Config {
let config = StorageConfig {
directory: PathBuf::from("./data"),
};

Expand Down

0 comments on commit f8a917c

Please sign in to comment.