Fix missing import

This commit is contained in:
Philip Kristoffersen
2021-10-05 15:48:51 +02:00
parent e370439c79
commit 0658021306
+1 -1
View File
@@ -22,7 +22,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
}
#[cfg(not(feature = "ui"))]
{
let settings = Settings::new()?;
let settings = settings::Settings::new()?;
sync::run_sync(&settings).await
}
}