2021-10-29 10:32:42 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-12-14 13:30:37 +00:00
|
|
|
use strum_macros::Display;
|
2021-10-29 10:32:42 +00:00
|
|
|
|
|
|
|
pub mod community;
|
|
|
|
pub mod create_or_update;
|
|
|
|
pub mod deletion;
|
|
|
|
pub mod following;
|
|
|
|
pub mod private_message;
|
|
|
|
pub mod voting;
|
|
|
|
|
2021-12-14 13:30:37 +00:00
|
|
|
#[derive(Clone, Debug, Display, Deserialize, Serialize, PartialEq)]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub enum CreateOrUpdateType {
|
|
|
|
Create,
|
|
|
|
Update,
|
|
|
|
}
|