pub trait FilesMounter: Send + Sync {
// Required method
fn mount_files(
&self,
app_component: &AppComponent<'_>,
ctx: MountFilesContext<'_>,
) -> Result<()>;
}
pub trait FilesMounter: Send + Sync {
// Required method
fn mount_files(
&self,
app_component: &AppComponent<'_>,
ctx: MountFilesContext<'_>,
) -> Result<()>;
}