1
0
Fork 0
forked from alemi/upub
upub/src/model/mod.rs

12 lines
195 B
Rust
Raw Normal View History

pub mod user;
pub mod object;
pub mod activity;
2024-03-21 20:36:28 +01:00
pub mod faker;
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
}
}