2022-10-23 22:18:01 +00:00
|
|
|
pub use super::receiver::HandlerError;
|
2022-05-30 21:48:41 +00:00
|
|
|
// Handlers should return object type if activity has been accepted
|
|
|
|
// or None if it has been ignored
|
2022-10-23 22:18:01 +00:00
|
|
|
pub type HandlerResult = Result<Option<&'static str>, HandlerError>;
|
2022-05-30 21:48:41 +00:00
|
|
|
|
2022-05-30 23:08:49 +00:00
|
|
|
pub mod accept_follow;
|
2022-07-16 01:35:10 +00:00
|
|
|
pub mod add;
|
2022-05-30 22:23:06 +00:00
|
|
|
pub mod announce;
|
2022-05-02 11:29:03 +00:00
|
|
|
pub mod create_note;
|
2022-05-30 20:45:53 +00:00
|
|
|
pub mod delete;
|
2022-05-30 22:50:57 +00:00
|
|
|
pub mod follow;
|
2022-05-30 22:29:09 +00:00
|
|
|
pub mod like;
|
2022-10-21 21:32:01 +00:00
|
|
|
pub mod move_person;
|
2022-05-30 23:08:49 +00:00
|
|
|
pub mod reject_follow;
|
2022-07-16 01:35:10 +00:00
|
|
|
pub mod remove;
|
2022-05-30 23:08:49 +00:00
|
|
|
pub mod undo;
|
|
|
|
pub mod undo_follow;
|
2022-12-06 23:48:24 +00:00
|
|
|
pub mod update;
|
|
|
|
mod update_note;
|
2022-05-02 11:29:03 +00:00
|
|
|
pub mod update_person;
|