Merge branch 'rolling' into FEAT/424_reduce-animations-effects-support-for-the-themes

This commit is contained in:
neon_arch 2023-12-12 15:24:42 +03:00 committed by GitHub
commit b00f76627b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 270 additions and 61 deletions

View file

@ -158,6 +158,10 @@ impl EngineHandler {
let engine = crate::engines::startpage::Startpage::new()?;
("startpage", Box::new(engine))
}
"librex" => {
let engine = crate::engines::librex::LibreX::new()?;
("librex", Box::new(engine))
}
_ => {
return Err(Report::from(EngineError::NoSuchEngineFound(
engine_name.to_string(),