Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 6m49s
test / unit (pull_request) Successful in 16m24s
test / integration (pull_request) Failing after 17m7s
- Reorganized imports in health, notifications, social, thoughts, and users handlers for clarity. - Updated function signatures in handlers to improve readability by aligning parameters. - Enhanced JSON response formatting in notifications and thoughts handlers. - Improved error handling in user-related functions. - Refactored OpenAPI documentation to maintain consistent formatting and structure. - Cleaned up unnecessary code and comments across various files. - Ensured consistent use of `Arc` for shared state in AppState and WorkerHandlers.
29 lines
718 B
Rust
29 lines
718 B
Rust
pub mod activities;
|
|
pub mod actor_handler;
|
|
pub mod actors;
|
|
pub mod content;
|
|
pub mod data;
|
|
pub mod error;
|
|
pub mod federation;
|
|
pub mod followers_handler;
|
|
pub mod inbox;
|
|
pub mod nodeinfo;
|
|
pub mod outbox;
|
|
pub mod repository;
|
|
pub mod service;
|
|
pub(crate) mod urls;
|
|
pub use urls::AS_PUBLIC;
|
|
pub mod user;
|
|
pub mod webfinger;
|
|
|
|
pub use activitypub_federation::kinds::object::NoteType;
|
|
pub use content::ApObjectHandler;
|
|
pub use data::FederationData;
|
|
pub use error::Error;
|
|
pub use federation::ApFederationConfig;
|
|
pub use repository::{
|
|
BlockedDomain, FederationRepository, Follower, FollowerStatus, FollowingStatus, RemoteActor,
|
|
};
|
|
pub use service::ActivityPubService;
|
|
pub use user::{ApProfileField, ApUser, ApUserRepository};
|