2024-03-16 03:27:36 +01:00
|
|
|
pub mod user;
|
2024-03-16 05:45:58 +01:00
|
|
|
pub mod object;
|
2023-12-30 05:08:05 +01:00
|
|
|
pub mod activity;
|
2024-03-21 20:36:28 +01:00
|
|
|
pub mod faker;
|
2024-03-16 05:45:58 +01:00
|
|
|
|
2024-03-16 20:09:06 +01:00
|
|
|
#[derive(Debug, Clone, thiserror::Error)]
|
|
|
|
#[error("missing required field: '{0}'")]
|
2024-03-19 01:00:44 +01:00
|
|
|
pub struct FieldError(pub &'static str);
|
2024-03-16 20:09:06 +01:00
|
|
|
|
2024-03-20 07:53:45 +01:00
|
|
|
}
|
2024-03-16 05:45:58 +01:00
|
|
|
}
|