use domain::DomainResult; use super::deps::AdminDeps; use super::queries::GetSettingsQuery; pub async fn execute( deps: &AdminDeps, _query: GetSettingsQuery, ) -> DomainResult> { deps.settings_repo.get_all().await } #[cfg(test)] #[path = "tests/get_settings.rs"] mod tests;