refactor(presentation): pure HTTP library — remove concrete adapter deps and binary

This commit is contained in:
2026-05-14 12:07:18 +02:00
parent 0c7a6fe9be
commit c072ee95cd
5 changed files with 1 additions and 127 deletions

View File

@@ -1,6 +1,5 @@
use std::sync::Arc;
use domain::ports::*;
use activitypub_base::ApFederationConfig;
#[derive(Clone)]
pub struct AppState {
@@ -20,5 +19,4 @@ pub struct AppState {
pub auth: Arc<dyn AuthService>,
pub hasher: Arc<dyn PasswordHasher>,
pub events: Arc<dyn EventPublisher>,
pub fed_config: ApFederationConfig,
}