- Deleted the `federation.rs` module and its associated functionality for federating thoughts to followers. - Removed the `well_known.rs` module and its WebFinger discovery functionality. - Eliminated references to federation in the `thought.rs` router and removed the spawning of background tasks for federating thoughts. - Deleted tests related to WebFinger and user inbox interactions in `activitypub.rs`. - Updated `Cargo.toml` to remove the `activitypub_federation` dependency.
10 lines
141 B
Rust
10 lines
141 B
Rust
mod error;
|
|
mod extractor;
|
|
mod init;
|
|
mod validation;
|
|
|
|
pub mod models;
|
|
pub mod routers;
|
|
|
|
pub use init::{setup_config, setup_db, setup_router};
|