2022-05-30 21:48:41 +00:00
|
|
|
use super::fetcher::helpers::ImportError;
|
|
|
|
// Handlers should return object type if activity has been accepted
|
|
|
|
// or None if it has been ignored
|
|
|
|
pub type HandlerResult = Result<Option<&'static str>, ImportError>;
|
|
|
|
|
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-05-11 12:50:36 +00:00
|
|
|
pub mod update_note;
|
2022-05-02 11:29:03 +00:00
|
|
|
pub mod update_person;
|