Fix OSS build (closes #1724)

This commit is contained in:
mdecimus 2025-06-26 15:47:33 +02:00
parent 46dfd926d9
commit 861471fde4

View file

@ -752,6 +752,14 @@ impl Server {
.await
.caused_by(trc::location!())
}
#[cfg(not(feature = "enterprise"))]
pub async fn logo_resource(
&self,
_: &str,
) -> trc::Result<Option<crate::manager::webadmin::Resource<Vec<u8>>>> {
Ok(None)
}
}
pub trait BuildServer {