activity-pub implementation
This commit is contained in:
21
crates/adapters/activitypub/src/lib.rs
Normal file
21
crates/adapters/activitypub/src/lib.rs
Normal file
@@ -0,0 +1,21 @@
|
||||
pub mod activities;
|
||||
pub mod actor_handler;
|
||||
pub mod actors;
|
||||
pub mod data;
|
||||
pub mod error;
|
||||
pub mod event_handler;
|
||||
pub mod federation;
|
||||
pub mod followers_handler;
|
||||
pub mod inbox;
|
||||
pub mod objects;
|
||||
pub mod outbox;
|
||||
pub mod repository;
|
||||
pub mod service;
|
||||
pub mod webfinger;
|
||||
|
||||
pub use data::FederationData;
|
||||
pub use error::Error;
|
||||
pub use event_handler::ActivityPubEventHandler;
|
||||
pub use federation::ApFederationConfig;
|
||||
pub use repository::{FederationRepository, Follower, FollowerStatus, RemoteActor};
|
||||
pub use service::ActivityPubService;
|
||||
Reference in New Issue
Block a user