ferri/ferri-main/src/ap/mod.rs

28 lines
279 B
Rust
Raw Normal View History

2025-04-10 19:40:50 +01:00
pub type ObjectId = String;
pub enum ObjectType {
Person,
}
pub struct Object {
id: ObjectId,
ty: ObjectType
}
pub struct Actor {
obj: Object,
inbox: Inbox,
outbox: Outbox,
}
pub struct Inbox {}
pub struct Outbox {}
pub struct Message {}
pub struct Activity {
}